0
0
Android Kotlinmobile~5 mins

Firebase project setup in Android Kotlin - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the first step to start using Firebase in your Android app?
Create a Firebase project in the Firebase Console and register your Android app with its package name.
Click to reveal answer
beginner
What file do you download from Firebase Console to connect your Android app to Firebase?
You download the google-services.json file and add it to your app's app/ folder.
Click to reveal answer
beginner
Which Gradle plugin must be added to your Android app to enable Firebase services?
Add the com.google.gms.google-services plugin in your app-level build.gradle file.
Click to reveal answer
beginner
Why do you need to add Firebase SDK dependencies in your app's build.gradle file?
To include Firebase features like Authentication, Firestore, or Analytics in your app, you add their SDK libraries as dependencies.
Click to reveal answer
beginner
What is the purpose of syncing your project with Gradle after adding Firebase dependencies?
Syncing downloads the required libraries and prepares your project to use Firebase features without errors.
Click to reveal answer
Where do you register your Android app to create a Firebase project?
AFirebase Console
BGoogle Play Store
CAndroid Studio
DGitHub
What is the name of the configuration file you add to your Android app for Firebase?
Afirebase-config.xml
Bgoogle-services.json
Cfirebase.json
Dgoogle-config.xml
Which Gradle file do you add Firebase SDK dependencies to?
AProject-level build.gradle
BSettings.gradle
CApp-level build.gradle
DManifest.xml
What plugin must be applied in your app-level build.gradle to enable Firebase?
Acom.google.gms.google-services
Bfirebase-plugin
Ckotlin-android
Dcom.android.application
Why is syncing your project with Gradle important after adding Firebase?
ATo update Android Studio
BTo clean the project
CTo run the app automatically
DTo download Firebase libraries and avoid build errors
Describe the steps to set up Firebase in a new Android app from scratch.
Think about what you do in Firebase Console and what files and settings you add in Android Studio.
You got /7 concepts.
    Explain why the google-services.json file is important in Firebase setup for Android.
    Consider what information your app needs to communicate with Firebase.
    You got /4 concepts.