trkpt/build.gradle

41 lines
970 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()
}
dependencies {
2017-11-28 21:02:45 +00:00
classpath 'com.android.tools.build:gradle:3.0.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
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
2016-08-29 12:50:41 +00:00
}
project.ext {
applicationId = 'org.y20k.trackbook'
versionCode = 18
versionName = '1.1.2'
minSdkVersion = 22
2017-12-21 11:01:42 +00:00
compileSdkVersion = 27
targetSdkVersion = 27
buildToolsVersion = '27.0.3'
2017-12-21 11:01:42 +00:00
supportLibraryVersion = '27.0.2'
constraintLayoutVersion = '1.1.0-beta4'
osmdroidVersion = '5.6.5'
gsonVersion = '2.8.2'
}
2016-08-29 12:50:41 +00:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}