일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- BottomSheetDialog
- 뷰바인딩
- 팝업액티비티
- firebasefunctions
- 코틀린
- ViewModel
- ButtonWithButton
- lifecyclescope
- OutlinedButton
- Imageview
- 랜덤ID
- Kotlin
- androidstudio
- Activity
- 안드로이드스튜디오
- textview
- RealtimeDB
- 안드로이드 스튜디오
- ArrayList
- 안드로이드
- nav_graph
- Dialog
- FRAGMENT
- ROOM
- firebase
- button
- MaterialButton
- EditText
- Android
- 밑줄
- Today
- Total
목록Firebase (6)
안드로이드 앱 개발
생각보다 data class 라든지 List 라든지 Json 구조를 클래스로 생성하는게 어려웠다. 다행히, Json to Kotlin class 라는 plugin을 설치하면 쉽게 해결할 수 있었다.
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..
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으로 보내주자
1. Firebase 연결 (다른 글 참고) 2. FirebaseAuth 객체 생성 및 초기화 private lateinit var auth: FirebaseAuth // 객체 생성 ... //onCreate에서 초기화 // Initialize Firebase Auth auth = FirebaseAuth.getInstance() 3. 로그인 //ID, PASSWORD 매칭 확인 private fun isValidCheck() { auth.signInWithEmailAndPassword( 아이디 Stirng , 비밀번호 String) .addOnCompleteListener(this) { task -> if (task.isSuccessful) { // Sign in success, update UI wit..
아래 코드는 Google Cloud Firestore에서 데이터를 읽어오기 기본 코드이다. DocumentReference docRef = db.collection("cities").document("SF"); docRef.get().addOnCompleteListener(new OnCompleteListener() { @Override public void onComplete(@NonNull Task task) { if (task.isSuccessful()) { DocumentSnapshot document = task.getResult(); if (document.exists()) { Log.d("readCusData", "DocumentSnapshot data: " + document.getData..