trkpt/build.gradle

40 lines
935 B
Groovy
Raw Normal View History

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()
google()
2016-08-29 12:50:41 +00:00
}
dependencies {
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 {
google()
2016-08-29 12:50:41 +00:00
jcenter()
}
project.ext {
applicationId = 'org.y20k.trackbook'
2018-04-19 20:10:47 +00:00
versionCode = 25
versionName = '1.1.9'
minSdkVersion = 22
2017-12-21 11:01:42 +00:00
compileSdkVersion = 27
targetSdkVersion = 27
buildToolsVersion = '27.0.3'
supportLibraryVersion = '27.1.1'
2018-03-10 21:32:14 +00:00
constraintLayoutVersion = '1.1.0-beta5'
osmdroidVersion = '6.0.1'
gsonVersion = '2.8.2'
}
2016-08-29 12:50:41 +00:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}