firebase fetch 간격 수정

- 300초 -> 60초
This commit is contained in:
Yu Sung 2024-11-21 01:07:18 +09:00
parent d2d44d5e9d
commit 28e233ee5f
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ struct SplashView: View {
private func fetchLastestVersion() {
let remoteConfig = RemoteConfig.remoteConfig()
let configSettings = RemoteConfigSettings()
configSettings.minimumFetchInterval = 300
configSettings.minimumFetchInterval = 60
remoteConfig.configSettings = configSettings
remoteConfig.fetch { status, error in