Skip to content

Commit

Permalink
hotfix: FRC 캐싱 10분 마다
Browse files Browse the repository at this point in the history
  • Loading branch information
HI-JIN2 committed Apr 3, 2024
1 parent 17b3631 commit a2b607f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class FirebaseRemoteConfigRepository {
fun init() {
// Firebase Remote Config 초기화 설정
val configSettings = FirebaseRemoteConfigSettings.Builder()
.setMinimumFetchIntervalInSeconds(3600) // 캐시된 값을 1시간마다 업데이트
.setMinimumFetchIntervalInSeconds(600) // 캐시된 값을 1시간마다 업데이트 -> 10분
.build()
instance.setConfigSettingsAsync(configSettings)
instance.setDefaultsAsync(R.xml.firebase_remote_config)
Expand Down

0 comments on commit a2b607f

Please sign in to comment.