ws1-framework/com.airwatch.sdk.configuration/AppSettingFlags
AppSettingFlags¶
open class AppSettingFlags
Add pre-defined keys and set flags on application for SDK to read and process. Note: The keys set are stored in-memory and is the responsibility of the application to repopulate on kill and relaunch.
Functions¶
| Name | Summary |
|---|---|
| get | open fun get(key: String): Any Gets the flag value from the in-memory map. |
| getAll | open fun getAll(): Map<String, Any> Return all setting flags that have been set and their values. |
| getBoolean | open fun getBoolean(key: String): Boolean open fun getBoolean(key: String, defaultValue: Boolean): Boolean Gets the boolean flag value from the in-memory map. |