To use the Firebase Remote Config Android SDK with Kotlin Extensions, add the following
to your app's build.gradle file:
// See maven.google.com for the latest versions
// This library transitively includes the firebase-config library
implementation 'com.google.firebase:firebase-config-ktx:$VERSION'Kotlin
val remoteConfig = FirebaseRemoteConfig.getInstance()Kotlin + KTX
val remoteConfig = Firebase.remoteConfigKotlin
val remoteConfig = FirebaseRemoteConfig.getInstance(app)Kotlin + KTX
val remoteConfig = Firebase.remoteConfig(app)Kotlin
val isEnabled = remoteConfig.getBoolean("is_enabled")
val fileBytes = remoteConfig.getByteArray("file_bytes")
val audioVolume = remoteConfig.getDouble("audio_volume")
val maxCharacters = remoteConfig.getLong("max_characters")
val accessKey = remoteConfig.getString("access_key")Kotlin + KTX
val isEnabled = remoteConfig["is_enabled"].asBoolean()
val fileBytes = remoteConfig["file_bytes"].asByteArray()
val audioVolume = remoteConfig["audio_volume"].asDouble()
val maxCharacters = remoteConfig["max_characters"].asLong()
val accessKey = remoteConfig["access_key"].asString()Kotlin
val configSettings = FirebaseRemoteConfigSettings.Builder()
.setMinimumFetchIntervalInSeconds(3600)
.setFetchTimeoutInSeconds(60)
.build()
remoteConfig.setConfigSettingsAsync(configSettings)Kotlin + KTX
val configSettings = remoteConfigSettings {
minimumFetchIntervalInSeconds = 3600
fetchTimeoutInSeconds = 60
}
remoteConfig.setConfigSettingsAsync(configSettings)