Last active
September 28, 2019 19:25
-
-
Save abhinavraj23/532110582379aac8ef73353ada8deb9b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 the following line: | |
| classpath 'com.google.gms:google-services:4.3.2' // Google Services plugin | |
| } | |
| } | |
| 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