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 {
|
2021-12-15 13:37:25 +05:30
|
|
|
ext.kotlin_version = '1.6.10'
|
2018-07-27 18:37:33 +05:30
|
|
|
repositories {
|
2021-09-09 00:00:20 +05:30
|
|
|
mavenCentral()
|
2018-07-27 18:37:33 +05:30
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2021-12-11 01:21:51 +05:30
|
|
|
classpath 'com.android.tools.build:gradle:7.0.4'
|
2018-12-13 02:57:37 +05:30
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-12-01 00:44:40 +05:30
|
|
|
def nav_version = "2.4.0-beta02"
|
2020-07-24 23:58:15 +05:30
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
2018-07-27 18:37:33 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-11 01:21:51 +05:30
|
|
|
task clean(type: Delete) {
|
2018-07-27 18:37:33 +05:30
|
|
|
delete rootProject.buildDir
|
2021-12-11 01:21:51 +05:30
|
|
|
}
|