trkpt/build.gradle

43 lines
1016 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 {
2018-09-19 15:06:27 +00:00
classpath 'com.android.tools.build:gradle:3.3.0-alpha10'
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'
versionCode = 27
versionName = '1.1.11'
minSdkVersion = 22
compileSdkVersion = 28
2017-12-21 11:01:42 +00:00
targetSdkVersion = 27
buildToolsVersion = '28.0.2'
constraintlayoutVersion = '1.1.3'
2018-09-19 15:06:27 +00:00
materialVersion = "1.0.0-rc02"
appcompatVersion = '1.0.0-rc02'
cardviewVersion = '1.0.0-rc02'
osmdroidVersion = '6.0.2'
gsonVersion = '2.8.5'
}
2016-08-29 12:50:41 +00:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}