Fix ktlitn
This commit is contained in:
parent
543adc0d68
commit
f274e418cf
1 changed files with 8 additions and 6 deletions
|
@ -8,12 +8,14 @@ import kotlinx.coroutines.withContext
|
||||||
class FeatureFlagManager : IFeatureFlagManager() {
|
class FeatureFlagManager : IFeatureFlagManager() {
|
||||||
private val remoteConfig: FirebaseRemoteConfig by lazy {
|
private val remoteConfig: FirebaseRemoteConfig by lazy {
|
||||||
FirebaseRemoteConfig.getInstance().apply {
|
FirebaseRemoteConfig.getInstance().apply {
|
||||||
setDefaultsAsync(mapOf(
|
setDefaultsAsync(
|
||||||
HISTORY_ENABLED to false,
|
mapOf(
|
||||||
RATE_US_ENABLED to true,
|
HISTORY_ENABLED to false,
|
||||||
IN_APP_ADS_ENABLED to false,
|
RATE_US_ENABLED to true,
|
||||||
GAMEPLAY_EVENTS_ENABLED to false,
|
IN_APP_ADS_ENABLED to false,
|
||||||
))
|
GAMEPLAY_EVENTS_ENABLED to false,
|
||||||
|
)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue