2016-08-29 12:50:41 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2018-11-04 09:13:19 +00:00
|
|
|
|
2016-08-29 12:50:41 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-01-25 10:23:49 +00:00
|
|
|
google()
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|
2018-11-04 08:36:52 +00:00
|
|
|
|
2018-11-04 09:13:19 +00:00
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
2016-08-29 12:50:41 +00:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
2018-11-04 09:13:19 +00:00
|
|
|
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2018-11-04 09:13:19 +00:00
|
|
|
|
2016-08-29 12:50:41 +00:00
|
|
|
repositories {
|
2018-01-26 09:14:29 +00:00
|
|
|
google()
|
2016-08-29 12:50:41 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
2018-11-04 09:13:19 +00:00
|
|
|
|
2017-06-12 08:11:51 +00:00
|
|
|
project.ext {
|
|
|
|
applicationId = 'org.y20k.trackbook'
|
2018-11-28 07:49:32 +00:00
|
|
|
versionCode = 30
|
|
|
|
versionName = '1.1.14'
|
2018-11-04 09:13:19 +00:00
|
|
|
|
|
|
|
compileSdkVersion = 28
|
2018-11-04 08:36:52 +00:00
|
|
|
targetSdkVersion = 27
|
2018-11-04 09:13:19 +00:00
|
|
|
minSdkVersion = 22
|
|
|
|
|
|
|
|
constraintlayoutVersion = '1.1.3'
|
|
|
|
materialVersion = "1.0.0"
|
2018-11-10 19:52:36 +00:00
|
|
|
appcompatVersion = '1.0.2'
|
2018-11-04 09:13:19 +00:00
|
|
|
cardviewVersion = '1.0.0'
|
2017-08-15 08:23:03 +00:00
|
|
|
|
2018-11-28 07:49:32 +00:00
|
|
|
osmdroidVersion = '6.0.3'
|
2018-05-23 09:32:30 +00:00
|
|
|
gsonVersion = '2.8.5'
|
2017-06-12 08:11:51 +00:00
|
|
|
}
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|