Simple-Commons/build.gradle

41 lines
1 KiB
Groovy
Raw Normal View History

2016-12-10 23:22:27 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2018-08-21 08:52:30 +00:00
propCompileSdkVersion = 28
propBuildToolsVersion = "28.0.3"
propMinSdkVersion = 21
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.15.19'
2019-07-07 18:46:41 +00:00
kotlin_version = '1.3.41'
}
2016-12-10 23:22:27 +00:00
repositories {
google()
jcenter()
2016-12-10 23:22:27 +00:00
}
2016-12-10 23:22:27 +00:00
dependencies {
2019-07-10 17:54:13 +00:00
classpath 'com.android.tools.build:gradle:3.4.2'
2018-08-15 08:35:20 +00:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
2019-02-21 11:03:27 +00:00
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2016-12-10 23:22:27 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
2016-12-10 23:22:27 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}