2016-01-08 14:31:04 -05:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2018-04-04 12:47:32 -04:00
|
|
|
maven {
|
|
|
|
url "https://maven.google.com"
|
|
|
|
}
|
2018-10-29 09:35:57 -04:00
|
|
|
jcenter()
|
2019-09-09 16:15:24 -04:00
|
|
|
google()
|
2016-01-08 14:31:04 -05:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-09-09 16:15:24 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.2'
|
|
|
|
classpath 'com.google.gms:google-services:4.3.2'
|
2016-01-08 14:31:04 -05:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-04-04 12:47:32 -04:00
|
|
|
maven {
|
|
|
|
url "https://maven.google.com"
|
|
|
|
}
|
2018-10-29 09:35:57 -04:00
|
|
|
jcenter()
|
2019-10-21 09:24:37 -04:00
|
|
|
google()
|
2016-01-08 14:31:04 -05:00
|
|
|
}
|
|
|
|
}
|