2017-01-20 21:46:11 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-05-06 04:41:50 +02:00
|
|
|
ext.kotlin_version = '1.3.72'
|
2017-01-20 21:46:11 +01:00
|
|
|
repositories {
|
2020-05-06 04:41:50 +02:00
|
|
|
google()
|
2017-01-20 21:46:11 +01:00
|
|
|
jcenter()
|
2020-05-06 04:41:50 +02:00
|
|
|
mavenCentral()
|
2017-01-20 21:46:11 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-05-06 04:41:50 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.6.3'
|
2017-01-20 21:46:11 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2020-05-06 04:41:50 +02:00
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
|
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
|
2017-01-20 21:46:11 +01:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2020-05-06 04:41:50 +02:00
|
|
|
google()
|
2017-01-20 21:46:11 +01:00
|
|
|
jcenter()
|
2020-05-06 04:41:50 +02:00
|
|
|
mavenCentral()
|
2017-01-20 21:46:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|