Fix ktlitn

This commit is contained in:
Lucas Lima 2021-01-03 12:08:08 -03:00 committed by Lucas Nunes
parent 543adc0d68
commit f274e418cf

View file

@ -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,
)
)
} }
} }