Created
July 6, 2022 05:45
-
-
Save PrasathRavichandran/6e79783d8aab37131db15aded74b4862 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.4' | |
} | |
} | |
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