Wook No.1
Firebase Remote Config 사용 본문
어떤 간단한 데이터를 서버에서 받고 싶은데 서버를 구축하기엔 너무 과하거나 할때 Firebase의 "Remote Config"를 활용하면 편리할 수 있다.
https://console.firebase.google.com/
1. Firebase Remote Config 설정
2. Remote Config 매개 변수 추가
3. Remote Config 사용 코드 작성
https://firebase.google.com/docs/remote-config/get-started?platform=android
app 수준의 build.gradle
dependencies {
implementation platform('com.google.firebase:firebase-bom:26.1.1')
implementation 'com.google.firebase:firebase-config-ktx'
}
Remote Config Code
val remoteConfig = Firebase.remoteConfig.apply {
val configSettings = remoteConfigSettings {
minimumFetchIntervalInSeconds = TimeUnit.MINUTES.toSeconds(60)
}
setConfigSettingsAsync(configSettings)
}
remoteConfig.fetchAndActivate().addOnCompleteListener { task ->
if (task.isSuccessful) {
val result = remoteConfig["remote_config_key"].asString()
} else {
// result fail
}
}
'Android' 카테고리의 다른 글
Android 라이브러리 만들기(AAR) (0) | 2022.09.15 |
---|---|
안드로이드 12 PendingIntent 이슈 및 대응 (0) | 2022.09.06 |
[에러] Fatal Exception: java.lang.IllegalStateException Can not perform this action after onSaveInstanceState (0) | 2022.07.04 |
Bitmap compress 할때 이미지 회전 이슈 (0) | 2022.06.27 |
[빌드에러] Could not create service of type FileAccessTimeJournal using GradleUserHomeScopeServices (0) | 2022.05.27 |
Comments