InstantiationErrorCode enum

Instantiation error.

Values

illegalArguments → const InstantiationErrorCode

Illegal arguments.

failed → const InstantiationErrorCode

Instantiation attempt failed. Please check log for error.

sharedSdkEngineNotInstantiated → const InstantiationErrorCode

Instantiation attempt failed because the shared SDK engine is not instantiated. Please initialise the SDK.

cacheFolderAccessDenied → const InstantiationErrorCode

Access to the specified cache folder is denied

persistentMapStorageFolderAccessDenied → const InstantiationErrorCode

Access to the specified persistent map storage folder is denied This may occur on Android due to insufficient permissions or scoped storage restrictions (e.g. attempting to access paths outside the application sandbox such as /sdcard/...). Use application-specific directories (e.g. getFilesDir(), getExternalFilesDir()) or ensure the app has appropriate access rights to the provided path. For detailed guidance, see the official Android documentation: https://developer.android.com/guide/topics/permissions/overview

failedToLockCacheFolder → const InstantiationErrorCode

The cache folder for given access key id is locked by other instance of SDKNativeEngine

failedToCreateAnalyticsService → const InstantiationErrorCode

Analytics service can not be created

accessKeyContainsIllegalSymbol → const InstantiationErrorCode

Access key contains illegal symbols. The below characters are not supported: A. '(single quote) B. "(double quote)

accessKeySecretContainsIllegalSymbol → const InstantiationErrorCode

Access key secret contains illegal symbols. The below characters are not supported: A. '(single quote) B. "(double quote)

layerConfigurationMismatch → const InstantiationErrorCode

Please check SDKOptions.layerConfiguration against SDK modules configuration.

sdkEngineAlreadyDisposed → const InstantiationErrorCode

Instantiation attempt failed because the dispose() method from SDKNativeEngine was called already.

invalidCatalogConfiguration → const InstantiationErrorCode

CatalogConfiguration contains invalid parameters. Check the corectness of HRNs and versions.

dataFolderAccessDenied → const InstantiationErrorCode

Access to the specified data folder is denied

Properties

hashCode → int
The hash code for this object.
no setterinherited
index → int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Constants

values → const List<InstantiationErrorCode>
A constant List of the values in this enum, in order of their declaration.