DEV Community

loizenai
loizenai

Posted on

Kotlin Firestore example - CRUD Operations with RecyclerView | Android

https://grokonez.com/android/kotlin-firestore-example-crud-operations-with-recyclerview-android

Kotlin Firestore example - CRUD Operations with RecyclerView | Android

Cloud Firestore helps us store data in the cloud. It supports offline mode so our app will work fine (write, read, listen to, and query data) whether device has internet connection or not, it automatically fetches changes from our database to Firebase Server. We can structure data in our ways to improve querying and fetching capabilities. This tutorial show you an Android app that can do Firestore CRUD Operations with RecyclerView.

Related Post: Kotlin Firestore example – CRUD Operations with FirebaseUI FirestoreRecyclerAdapter | Android

I. Technologies

  • Android Studio 3
  • Kotlin 1.2.0
  • Firebase Firestore 11.8.0

    II. Overview

    1. Goal

    We will build an Android App that supports showing, inserting, editing, deleting Notes from/to Cloud Firestore Database with RecyclerView:

cloud-firestore-crud-demo-show-notes

Firebase Console for Firestore will be like:

cloud-firestore-crud-demo-console-show-notes

2. Cloud Firestore

2.1 Add Firestore to Android App

cloud-firestore-console-add-project

  • When your app is created on Firebase Console, you will need to register Android Project. Now fill project package name to register your app:

kotlin-cloud-firestore-add-firebase-project

  • Download google-service.json config file and follow instructions:

cloud-firestore-console-add-firebase-android-json

  • Add Service plugin for Gradle:

cloud-firestore-console-add-firebase-gradle

  • Open build.gradle (App-level), add dependency:
    
    dependencies {
    // ...
    implementation 'com.android.support:recyclerview-v7:26.1.0'
    implementation 'com.google.firebase:firebase-firestore:11.8.0'
    }

apply plugin: 'com.google.gms.google-services'

  • We also need Authentication to work with Firestore. To simplify this example without Authentication steps, we will allow anyone be able to read or write to the database:

cloud-firestore-console-config-auth

More at: https://grokonez.com/android/kotlin-firestore-example-crud-operations-with-recyclerview-android

Top comments (1)

Collapse
 
thanhlm profile image
Thanh Minh

Great post @loizenai

Do you use any tool to work with Firestore? I found refiapp.io/ is really helpful for the case