2016-08-29 12:50:41 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-07-31 23:56:40 +00:00
|
|
|
ext {
|
2021-12-15 13:10:33 +00:00
|
|
|
kotlin_version = '1.6.10'
|
2023-03-05 05:43:37 +00:00
|
|
|
navigation_version = '2.4.1'
|
2020-07-31 23:56:40 +00:00
|
|
|
}
|
2016-08-29 12:50:41 +00:00
|
|
|
repositories {
|
2018-01-25 10:23:49 +00:00
|
|
|
google()
|
2021-06-24 19:56:48 +00:00
|
|
|
mavenCentral()
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|
2018-11-04 09:13:19 +00:00
|
|
|
dependencies {
|
2023-03-05 05:43:37 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.2.1'
|
2020-01-02 17:00:37 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2020-07-31 23:56:40 +00:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
|
|
|
|
|
2016-08-29 12:50:41 +00:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-01-26 09:14:29 +00:00
|
|
|
google()
|
2021-06-24 19:56:48 +00:00
|
|
|
mavenCentral()
|
2017-06-12 08:11:51 +00:00
|
|
|
}
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|