Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Page Properties
hiddentrue

Status

Approver

Gini Capture SDK provides various features you can enable. All of them are configured through GiniConfiguration.shared instance. Specifically, the GiniConfiguration is used to configure the Gini Capture SDK. For Gini Capture SDK used GiniConfiguration.shared() singleton.

Code Block
languageswift
@objc
public final class GiniConfiguration : NSObject

The GiniConfiguration class allows customizations to the look and feel of Gini Capture SDK. If there are limitations regarding which API can be used, this is clearly stated for the specific attribute.

Text can also be set by using the appropriate keys in a Localizable.strings file in the projects bundle. The library will prefer whatever value is set in the following order: attribute in configuration, key in strings file in project bundle, key in strings file in GiniCapture bundle.

Images can only be set by providing images with the same filename in an assets file or as individual files in the projects bundle. The library will prefer whatever value is set in the following order: asset file in project bundle, asset file in GiniCapture bundle.

Info

If there are conflicting pairs of image and text for an interface element (e.g. navigationBarCameraTitleCloseButton) the image will always be preferred, while making sure the accessibility label is set.

...

  • shared

Expand
titleshared

Singleton to make configuration internally accessible in all classes of the Gini Capture SDK.

Code Block
public static var shared: GiniConfiguration

...

Here you can find an example implementation.