Skip to content

Instantly share code, notes, and snippets.

@ktvipin27
Created June 12, 2020 02:50
Show Gist options
  • Save ktvipin27/e0c4ff6ea0f3cf2648346fb61a22b88f to your computer and use it in GitHub Desktop.
Save ktvipin27/e0c4ff6ea0f3cf2648346fb61a22b88f to your computer and use it in GitHub Desktop.
Project-level build.gradle file for Firebase realtime database configuration.
buildscript {
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
}
dependencies {
...
// Add this line
classpath 'com.google.gms:google-services:4.3.3'
}
}
allprojects {
...
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment