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 {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2018-01-25 10:23:49 +00:00
|
|
|
google()
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2018-04-24 13:11:56 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.2'
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-01-26 09:14:29 +00:00
|
|
|
google()
|
2016-08-29 12:50:41 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
2017-06-12 08:11:51 +00:00
|
|
|
project.ext {
|
|
|
|
applicationId = 'org.y20k.trackbook'
|
2018-04-19 20:10:47 +00:00
|
|
|
versionCode = 25
|
|
|
|
versionName = '1.1.9'
|
2017-06-12 08:11:51 +00:00
|
|
|
minSdkVersion = 22
|
2017-12-21 11:01:42 +00:00
|
|
|
compileSdkVersion = 27
|
|
|
|
targetSdkVersion = 27
|
2018-01-12 16:42:47 +00:00
|
|
|
buildToolsVersion = '27.0.3'
|
2018-04-16 15:00:27 +00:00
|
|
|
supportLibraryVersion = '27.1.1'
|
2018-03-10 21:32:14 +00:00
|
|
|
constraintLayoutVersion = '1.1.0-beta5'
|
2017-08-15 08:23:03 +00:00
|
|
|
|
2018-02-19 08:00:47 +00:00
|
|
|
osmdroidVersion = '6.0.1'
|
2017-10-16 08:20:59 +00:00
|
|
|
gsonVersion = '2.8.2'
|
2017-06-12 08:11:51 +00:00
|
|
|
}
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|