2018-08-12 14:33:11 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2018-09-01 01:06:06 +00:00
|
|
|
ext.kotlin_version = '1.2.51'
|
2018-08-12 14:33:11 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2018-09-01 01:06:06 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.2.0-rc02'
|
2018-08-12 14:33:11 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
|
2018-08-13 20:02:21 +00:00
|
|
|
// For libaums
|
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
|
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
|
|
|
|
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
|
2018-08-14 11:38:09 +00:00
|
|
|
classpath 'org.codehaus.groovy:groovy-all:2.4.12'
|
2018-08-13 20:02:21 +00:00
|
|
|
|
2018-08-12 14:33:11 +00:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2018-08-30 15:18:40 +00:00
|
|
|
maven { url "https://jitpack.io" }
|
2018-08-12 14:33:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2018-08-13 20:02:21 +00:00
|
|
|
}
|