Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 뷰바인딩
- ArrayList
- 안드로이드스튜디오
- OutlinedButton
- FRAGMENT
- firebase
- RealtimeDB
- nav_graph
- 코틀린
- Imageview
- BottomSheetDialog
- ViewModel
- firebasefunctions
- ROOM
- ButtonWithButton
- 안드로이드
- Kotlin
- 안드로이드 스튜디오
- textview
- Android
- androidstudio
- Activity
- MaterialButton
- 랜덤ID
- Dialog
- 팝업액티비티
- button
- 밑줄
- EditText
- lifecyclescope
Archives
- Today
- Total
목록Firebase/Realtime DB (2)
안드로이드 앱 개발
Realtime DB 규칙 - auth != null && auth == $uid 일 때
Firebase Realtime DB를 설계할 때, 접근된 auth만 데이터를 읽고, 쓰게 하고 싶을 때가 있다. 이때, 보안규칙을 설정하면 되는데. 아래와 같이 간단하게 할 수 있다. 1. DB의 구조가 아래와 같을 때 각각 user의 인스턴스에 "uid"라는 field에 uid 값을 갖고 있어야 한다. 2. Firebase의 Realtime DB의 규칙에 아래와 같은 보안규칙을 설정하면 된다. { "rules": { "users" : { "$uid": { // Allow only authenticated content owners access to their data ".read": "auth != null && auth.uid == $uid" ,".write": "auth != null && aut..
Firebase/Realtime DB
2021. 7. 4. 20:57
DB의 child의 세부 항목 UPDATE하기
database.child("users").child(uid).child("customers").child(customerKeyValue) .child("customerMemo").setValue(binding.memoEt.text.toString().trim()).addOnSuccessListener { mShowShortToast("성공") }.addOnFailureListener { mShowShortToast("실패") } * 가끔 boolean 타입이나 int 타입은 firebase rdb에 수정이 안 되는 경우가 있다. (사실 거의 대부분) 그럴 때는 .toString으로 보내주자
Firebase/Realtime DB
2021. 5. 15. 14:39