2020-06-25 16:57:13 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2020-09-03 18:56:28 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.1'
|
2020-06-26 18:17:17 +02:00
|
|
|
def nav_version = "2.3.0"
|
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
2020-06-25 16:57:13 +02:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2020-09-03 19:08:53 +02:00
|
|
|
}
|