2017-06-11 19:24:09 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2017-10-25 23:33:36 +08:00
|
|
|
ext.getGitHeadRefsSuffix = {
|
|
|
|
try {
|
|
|
|
def headFile = new File('.git/HEAD')
|
|
|
|
if (headFile.exists()) {
|
|
|
|
String[] strings = headFile.getText('UTF-8').split(" ");
|
|
|
|
if (strings.size() > 1) {
|
|
|
|
String refFilePath = '.git/' + strings[1];
|
|
|
|
|
|
|
|
def refFile = new File(refFilePath.replace("\n", ""));
|
|
|
|
|
|
|
|
return refFile.getText('UTF-8').substring(0, 7)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace()
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-04-20 22:17:36 +03:00
|
|
|
ext.kotlin_version = '1.3.50'
|
2017-12-14 23:55:15 +08:00
|
|
|
ext.android = [
|
2021-04-20 22:17:36 +03:00
|
|
|
KOTLIN_VERSION : '1.3.50',
|
2017-12-14 23:55:15 +08:00
|
|
|
|
2017-12-15 00:14:46 +08:00
|
|
|
MIN_SDK_VERSION : 21,
|
|
|
|
|
2021-04-20 23:21:51 +03:00
|
|
|
COMPILE_SDK_VERSION : 28,
|
2017-12-14 23:55:15 +08:00
|
|
|
|
2021-04-20 23:21:51 +03:00
|
|
|
TARGET_SDK_VERSION : 28,
|
2017-12-14 23:55:15 +08:00
|
|
|
|
2018-11-08 23:35:05 +08:00
|
|
|
BUILD_TOOL_VERSION : '28.0.3',
|
2017-12-15 00:14:46 +08:00
|
|
|
|
|
|
|
JUNIT_VERSION : "4.12"
|
2017-12-14 23:55:15 +08:00
|
|
|
]
|
|
|
|
|
2017-12-15 00:14:46 +08:00
|
|
|
ext.deps = [
|
2021-04-20 23:21:51 +03:00
|
|
|
"annotations" : "androidx.annotation:annotation:1.0.0",
|
|
|
|
"appcompat-v7" : "androidx.appcompat:appcompat:1.0.0",
|
2017-12-15 00:14:46 +08:00
|
|
|
"design" : "com.android.support:design:${ext.android.ANDROID_SUPPORT_VERSION}",
|
|
|
|
"cardview-v7" : "com.android.support:cardview-v7:${ext.android.ANDROID_SUPPORT_VERSION}",
|
2021-04-20 22:17:36 +03:00
|
|
|
"kotlin-stdlib" : "org.jetbrains.kotlin:kotlin-stdlib:${ext.android.KOTLIN_VERSION}",
|
2017-12-15 00:14:46 +08:00
|
|
|
"kotlin-gradle-plugin": "org.jetbrains.kotlin:kotlin-gradle-plugin:${ext.android.KOTLIN_VERSION}",
|
|
|
|
"junit" : "junit:junit:${ext.android.JUNIT_VERSION}"
|
|
|
|
]
|
2017-12-14 23:55:15 +08:00
|
|
|
|
2017-10-25 23:33:36 +08:00
|
|
|
|
2017-06-11 19:24:09 +08:00
|
|
|
repositories {
|
2017-07-29 22:14:46 +08:00
|
|
|
maven { url 'https://dl.google.com/dl/android/maven2/' }
|
2017-06-11 19:24:09 +08:00
|
|
|
jcenter()
|
2018-04-01 01:19:55 +08:00
|
|
|
google()
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-04-20 22:17:36 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.1'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-12-15 00:14:46 +08:00
|
|
|
classpath rootProject.ext.deps["kotlin-gradle-plugin"]
|
2017-06-11 19:24:09 +08:00
|
|
|
|
2019-01-09 23:10:07 +08:00
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
|
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
|
|
|
|
|
2017-06-11 19:24:09 +08:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-07-30 00:09:46 +08:00
|
|
|
maven { url 'https://dl.google.com/dl/android/maven2/' }
|
2017-06-11 19:24:09 +08:00
|
|
|
mavenCentral()
|
2017-06-12 12:05:11 +08:00
|
|
|
maven { url "https://jitpack.io" }
|
2021-04-20 22:17:36 +03:00
|
|
|
google()
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|