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?
✗ Incorrect
You register your app in the Firebase Console to link it with Firebase services.
What is the name of the configuration file you add to your Android app for Firebase?
✗ Incorrect
The
google-services.json file contains Firebase project info for your Android app.Which Gradle file do you add Firebase SDK dependencies to?
✗ Incorrect
Firebase SDK dependencies go in the app-level
build.gradle file.What plugin must be applied in your app-level build.gradle to enable Firebase?
✗ Incorrect
The
com.google.gms.google-services plugin connects your app with Firebase.Why is syncing your project with Gradle important after adding Firebase?
✗ Incorrect
Syncing downloads required Firebase libraries so your app builds correctly.
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.