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 {
|
2017-11-18 20:25:03 +00:00
|
|
|
ext {
|
|
|
|
propBuildToolsVersion = '27.0.1'
|
|
|
|
propCompileSdkVersion = 27
|
|
|
|
propMinSdkVersion = 16
|
|
|
|
propTargetSdkVersion = propCompileSdkVersion
|
|
|
|
propVersionCode = 1
|
2017-11-18 22:59:18 +00:00
|
|
|
propVersionName = '2.40.3'
|
2017-11-18 20:25:03 +00:00
|
|
|
kotlin_version = '1.1.60'
|
|
|
|
support_libs = '27.0.1'
|
|
|
|
}
|
|
|
|
|
2016-12-10 23:22:27 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-11-18 20:25:03 +00:00
|
|
|
google()
|
2016-12-10 23:22:27 +00:00
|
|
|
}
|
2017-11-18 20:25:03 +00:00
|
|
|
|
2016-12-10 23:22:27 +00:00
|
|
|
dependencies {
|
2017-11-07 14:08:58 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.0'
|
2016-12-18 12:16:27 +00:00
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
|
2016-12-26 17:43:24 +00:00
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
|
2017-11-18 20:25:03 +00:00
|
|
|
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()
|
2017-11-18 20:25:03 +00:00
|
|
|
google()
|
2017-09-26 21:42:46 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
2016-12-10 23:22:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|