Skip to content

Instantly share code, notes, and snippets.

@ssniks
Last active May 6, 2022 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssniks/695764b6b661bd1d3130c1676d9401a1 to your computer and use it in GitHub Desktop.
Save ssniks/695764b6b661bd1d3130c1676d9401a1 to your computer and use it in GitHub Desktop.
Project level gradle
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.10'
}
}
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