2015-01-20 17:50:46 -05:00
|
|
|
buildscript {
|
2016-01-04 06:39:25 -05:00
|
|
|
repositories {
|
2018-04-29 13:04:13 -04:00
|
|
|
google()
|
2016-01-04 18:25:36 -05:00
|
|
|
jcenter()
|
2015-01-20 17:50:46 -05:00
|
|
|
}
|
2016-01-04 06:39:25 -05:00
|
|
|
dependencies {
|
2018-04-29 13:04:13 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.2'
|
2015-01-24 17:22:04 -05:00
|
|
|
}
|
2016-08-14 06:23:05 -04:00
|
|
|
|
|
|
|
ext {
|
2018-04-29 13:04:13 -04:00
|
|
|
versions = [supportLib: "27.1.1",
|
2017-08-02 05:05:39 -04:00
|
|
|
gpsLib : "11.0.2",
|
2018-04-29 13:04:13 -04:00
|
|
|
sdk : [compile: 27, buildTools: "27.0.3", min: 19, target: 27]]
|
2016-08-14 06:23:05 -04:00
|
|
|
}
|
2016-01-04 06:39:25 -05:00
|
|
|
}
|
2015-01-20 17:52:52 -05:00
|
|
|
|
2016-01-04 06:39:25 -05:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-04-29 13:04:13 -04:00
|
|
|
google()
|
2017-05-25 08:46:48 -04:00
|
|
|
jcenter()
|
2020-03-13 17:45:31 -04:00
|
|
|
mavenLocal()
|
2016-01-04 06:39:25 -05:00
|
|
|
|
2016-01-06 06:38:39 -05:00
|
|
|
flatDir {
|
|
|
|
dirs 'misc/libs'
|
|
|
|
}
|
2016-02-28 15:34:58 -05:00
|
|
|
|
|
|
|
if (!project.hasProperty("ossrhUsername")) {
|
|
|
|
ext.ossrhUsername = "no-username"
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!project.hasProperty("ossrhPassword")) {
|
|
|
|
ext.ossrhPassword = "no-password"
|
|
|
|
}
|
2015-01-20 17:52:52 -05:00
|
|
|
}
|
2018-04-30 08:38:41 -04:00
|
|
|
}
|