clearUpdatedConfiguration
API. This will clear programmatic updates to configuration made via the updateConfiguration(configMap)
(Android)/ updateConfigurationWith(configDict:)
(iOS) API. It will also clear any updates to the MobilePrivacyStatus
(Android)/ PrivacyStatus
(iOS) made via setPrivacyStatus(privacyStatus)
(Android)/ setPrivacyStatus(_ status:)
(iOS).configureWithAppId(appId)
(Android)/configureWith(appId:)
(iOS) -> updateConfiguration(configMap)
(Android)/ updateConfigurationWith(configDict:)
(iOS) -> clearUpdatedConfiguration()
: In this example, you end up with the initial configuration set via configureWithAppId(appId)
(Android)/ configureWith(appId:)
(iOS)configureWithFileInPath(filePath)
(Android)/ configureWith(filePath:)
(iOS) -> updateConfiguration(configMap)
(Android)/ updateConfigurationWith(configDict)
(iOS) -> clearUpdatedConfiguration()
: In this example, you end up with the initial configuration set via configureWithFileInPath(filePath)
(Android)/ configureWith(filePath:)
(iOS)configureWithFileInAssets(fileName)
(Android) -> updateConfiguration(configMap)
(Android) -> clearUpdatedConfiguration()
: In this example, you end up with the initial configuration set via configureWithFileInAssets(fileName)
(Android)configureWithAppId(appId)
(Android)/configureWith(appId:)
(iOS) or configureWithFileInPath(filePath)
(Android)/ configureWith(filePath:)
(iOS) or configureWithFileInAssets(fileName)
(Android) -> updateConfiguration(configMap)
(Android)/ updateConfigurationWith(configDict)
(iOS) -> clearUpdatedConfiguration()
-> updateConfiguration(configMap)
(Android)/ updateConfigurationWith(configDict)
(iOS): In this example, the configuration will be the most recently updated configuration and will not have any keys from the first update unless they are included in the most recent update.configureWithAppId(appId)
(Android)/configureWith(appId:)
(iOS) or configureWithFileInPath(filePath)
(Android)/ configureWith(filePath:)
(iOS) or configureWithFileInAssets(fileName)
(Android) -> setPrivacyStatus(privacyStatus)
(Android)/ setPrivacyStatus(_ status:)
(iOS) -> clearUpdatedConfiguration()
: In this example, the configuration will have the initial MobilePrivacyStatus
(Android)/ PrivacyStatus
(iOS) set via configureWithAppId(appId)
(Android)/configureWith(appId:)
(iOS) or configureWithFileInPath(filePath)
(Android)/ configureWith(filePath:)
(iOS) or configureWithFileInAssets(fileName)
(Android).extensionVersion()
API returns the version of the Configuration extension.build.environment
key or any key with an environment prefix, because it can lead to unexpected behaviors. For more information, read Environment-aware configuration properties.