trkpt/build.gradle

47 lines
960 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 {
2016-08-29 12:50:41 +00:00
repositories {
jcenter()
google()
2016-08-29 12:50:41 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
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
}
2016-08-29 12:50:41 +00:00
}
allprojects {
2016-08-29 12:50:41 +00:00
repositories {
google()
2016-08-29 12:50:41 +00:00
jcenter()
}
project.ext {
applicationId = 'org.y20k.trackbook'
2019-05-09 20:12:19 +00:00
versionCode = 35
versionName = '1.2.1'
compileSdkVersion = 28
targetSdkVersion = 27
minSdkVersion = 22
constraintlayoutVersion = '1.1.3'
materialVersion = "1.0.0"
appcompatVersion = '1.0.2'
cardviewVersion = '1.0.0'
2019-03-25 13:58:39 +00:00
osmdroidVersion = '6.1.0'
gsonVersion = '2.8.5'
}
2016-08-29 12:50:41 +00:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}