2018-07-27 13:07:33 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-05-13 15:14:42 +00:00
|
|
|
ext.kotlin_version = '1.3.72'
|
2018-07-27 13:07:33 +00:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
google()
|
2020-01-05 16:14:41 +00:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
2018-07-27 13:07:33 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-07-25 20:22:37 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.1'
|
2018-12-12 21:27:37 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-09-09 13:04:53 +00:00
|
|
|
classpath 'com.android.tools.build:bundletool:0.9.0'
|
2020-02-25 14:45:41 +00:00
|
|
|
classpath "gradle.plugin.ru.cleverpumpkin.proguard-dictionaries-generator:plugin:1.0.8"
|
2020-07-24 18:28:15 +00:00
|
|
|
def nav_version = "2.3.0"
|
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
2018-07-27 13:07:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|