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() {
private val remoteConfig: FirebaseRemoteConfig by lazy {
FirebaseRemoteConfig.getInstance().apply {
setDefaultsAsync(mapOf(
HISTORY_ENABLED to false,
RATE_US_ENABLED to true,
IN_APP_ADS_ENABLED to false,
GAMEPLAY_EVENTS_ENABLED to false,
))
setDefaultsAsync(
mapOf(
HISTORY_ENABLED to false,
RATE_US_ENABLED to true,
IN_APP_ADS_ENABLED to false,
GAMEPLAY_EVENTS_ENABLED to false,
)
)
}
}