2018-07-27 18:37:33 +05:30
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-12-30 09:44:04 +05:30
|
|
|
ext.kotlin_version = '1.3.61'
|
2018-07-27 18:37:33 +05:30
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
google()
|
2020-01-05 21:44:41 +05:30
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
2018-07-27 18:37:33 +05:30
|
|
|
}
|
|
|
|
dependencies {
|
2020-02-25 12:14:46 +05:30
|
|
|
classpath 'com.android.tools.build:gradle:3.6.0'
|
2018-12-13 02:57:37 +05:30
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-09-09 18:34:53 +05:30
|
|
|
classpath 'com.android.tools.build:bundletool:0.9.0'
|
2020-01-05 21:44:41 +05:30
|
|
|
classpath "gradle.plugin.ru.cleverpumpkin.proguard-dictionaries-generator:plugin:1.0.7"
|
2018-07-27 18:37:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|