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.kotlin_version = '1.1.51'
|
|
|
|
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 ""
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
dependencies {
|
2017-10-30 23:59:17 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.0'
|
2017-06-11 19:24:09 +08:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
|
|
|
|
// 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" }
|
2017-06-11 19:24:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|