Simple-Commons/build.gradle

42 lines
1.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.2"
propMinSdkVersion = 16
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '4.7.14'
2018-09-17 19:02:38 +00:00
kotlin_version = '1.2.70'
2018-04-12 17:40:59 +00:00
support_libs = '27.1.1'
}
2016-12-10 23:22:27 +00:00
repositories {
jcenter()
google()
2016-12-10 23:22:27 +00:00
}
2016-12-10 23:22:27 +00:00
dependencies {
2018-08-08 10:11:21 +00:00
classpath 'com.android.tools.build:gradle:3.1.4'
2018-08-15 08:35:20 +00:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
2017-11-19 11:01:43 +00:00
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
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 {
jcenter()
google()
maven { url 'https://jitpack.io' }
2016-12-10 23:22:27 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}