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 {
|
2018-08-21 08:52:30 +00:00
|
|
|
propCompileSdkVersion = 28
|
2018-09-28 13:03:24 +00:00
|
|
|
propBuildToolsVersion = "28.0.3"
|
2018-10-11 09:17:54 +00:00
|
|
|
propMinSdkVersion = 21
|
2017-11-18 20:25:03 +00:00
|
|
|
propTargetSdkVersion = propCompileSdkVersion
|
|
|
|
propVersionCode = 1
|
2019-10-28 22:28:23 +00:00
|
|
|
propVersionName = '5.18.15'
|
2019-08-25 11:10:22 +00:00
|
|
|
kotlin_version = '1.3.50'
|
2017-11-18 20:25:03 +00:00
|
|
|
}
|
|
|
|
|
2016-12-10 23:22:27 +00:00
|
|
|
repositories {
|
2017-11-18 20:25:03 +00:00
|
|
|
google()
|
2018-10-09 20:53:28 +00:00
|
|
|
jcenter()
|
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 {
|
2019-10-04 09:46:53 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.1'
|
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'
|
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 {
|
2017-11-18 20:25:03 +00:00
|
|
|
google()
|
2018-10-09 20:53:28 +00:00
|
|
|
jcenter()
|
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
|
|
|
|
}
|