TubeLab-App-Android/build.gradle

27 lines
653 B
Groovy
Raw Normal View History

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 {
classpath "com.android.tools.build:gradle:4.0.0"
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-06-26 18:17:17 +02:00
}