일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 팝업액티비티
- Dialog
- Kotlin
- 코틀린
- Activity
- Imageview
- EditText
- 랜덤ID
- BottomSheetDialog
- RealtimeDB
- 밑줄
- MaterialButton
- 안드로이드
- Android
- ButtonWithButton
- lifecyclescope
- button
- textview
- nav_graph
- ArrayList
- ROOM
- androidstudio
- OutlinedButton
- firebasefunctions
- firebase
- ViewModel
- 뷰바인딩
- 안드로이드 스튜디오
- 안드로이드스튜디오
- FRAGMENT
- Today
- Total
목록firebase (3)
안드로이드 앱 개발
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..
1. 안드로이드 스튜디오 내에서 firebase functions와 연결하기 Tools -> Firebase -> functions 설치와 연결 고고 -> 안드로이드 앱에서 직접 firebase에 요청하고 받아오는 경우인데 (잘 안쓴다고함, 대부분 retrofit을 사용) 2. 구글에 retrofit 검색 Download에 가서 implementation을 넣어줘야하는데 한 번에 template으로 아래 항목들 복/붙 // retrofit def retrofit_version = "2.9.0" implementation "com.squareup.retrofit2:retrofit:$retrofit_version" implementation "com.squareup.retrofit2:converter-gso..
Firebase RealtimeDB를 사용하면서 데이터 중복저장을 막기 위해 저장하려고하는 값이 이미 존재하는지 확인해야하는 상황이 있다. 예를 들면, 고객데이터를 저장하는데, 동일한 번호로 중복을 막는 상황 private fun isVaildNumberCheck(){ //전화번호 중복 체크 database.child("users").child(uid).child("customers").orderByChild("customerNumber").equalTo(customerNumber) .addListenerForSingleValueEvent(object : ValueEventListener { override fun onDataChange(dataSnapshot: DataSnapshot) { if (!da..