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 {
propCompileSdkVersion = 27
2018-04-27 17:13:30 +00:00
propBuildToolsVersion = "27.0.3"
propMinSdkVersion = 16
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
2018-06-16 19:44:21 +00:00
propVersionName = '4.2.1'
2018-06-13 20:11:04 +00:00
kotlin_version = '1.2.50'
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-06-11 09:58:37 +00:00
classpath 'com.android.tools.build:gradle:3.1.3'
2017-11-19 11:01:43 +00:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
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
}