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 {
propCompileSdkVersion = 27
propMinSdkVersion = 16
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '3.9.13'
2018-01-25 10:23:52 +00:00
kotlin_version = '1.2.21'
2017-11-30 15:25:30 +00:00
support_libs = '27.0.2'
}
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 {
2017-11-21 23:16:14 +00:00
classpath 'com.android.tools.build:gradle:3.0.1'
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
}