Firebase Realtime Database가 업데이트되지 않을 때
Firebase Realtime Database 페이지에서 데이터베이스 위치가 기본값(미국)이 아니라면 상단의 URL을 코드에 추가해줘야 한다.
Kotlin+KTX를 사용하는 경우
val database = Firebase.database("https://${프로젝트 이름}-default-rtdb.asia-southeast1.firebasedatabase.app/")
val myRef = database.getReference("message")
그 외 경우
val database = Firebase.getInstance("https://${프로젝트 이름}-default-rtdb.asia-southeast1.firebasedatabase.app/")
val myRef = database.getReference("message")
'안드로이드 Android' 카테고리의 다른 글
Android Studio Extract Resource 리소스 추출 단축키 (0) | 2023.02.23 |
---|---|
AndroidStudio 빌드 속도 높이는 법 (0) | 2021.11.09 |
adb connect 명령 사용 시 failed to connect to ~, already connected to ~ (0) | 2021.09.14 |
Unable to instantiate activity ComponentInfo MainActivity (0) | 2021.09.10 |
Class referenced in ~, was not found in the project or the libraries (0) | 2021.06.11 |