The document provides instructions for adding Firebase to an Android project. It specifies adding repositories and dependencies to the project-level build.gradle file to include the Google services plugin. It also specifies adding plugins, dependencies and repositories to the app-level build.gradle file to include Firebase database, Realtime database UI, Cloud Firestore UI, Auth UI and Storage UI.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
54 views1 page
Dependencias Firebase
The document provides instructions for adding Firebase to an Android project. It specifies adding repositories and dependencies to the project-level build.gradle file to include the Google services plugin. It also specifies adding plugins, dependencies and repositories to the app-level build.gradle file to include Firebase database, Realtime database UI, Cloud Firestore UI, Auth UI and Storage UI.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
Firebase
Build.gradle (Project) añadir
buildscript { repositories { // Make sure that you have the following two repositories google() // Google's Maven repository
mavenCentral() // Maven Central repository
} dependencies {
// Add the dependency for the Google services Gradle plugin
classpath 'com.google.gms:google-services:4.3.14'
} }
Build.gradle (app) añadir
plugins { id 'com.android.application' id 'com.google.gms.google-services' } en dependencias dependencies { implementation platform('com.google.firebase:firebase-bom:31.1.1') implementation 'com.google.firebase:firebase-database:20.1.0'
en Firebase UI para usar RecyclerView añadir
dependencies { // FirebaseUI for Firebase Realtime Database implementation 'com.firebaseui:firebase-ui-database:8.0.2'