TubeLab-App-Android/build.gradle

30 lines
852 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()
2020-10-15 15:16:41 +02:00
mavenCentral()
2020-06-25 16:57:13 +02:00
}
dependencies {
2020-11-14 09:50:48 +01:00
classpath 'com.android.tools.build:gradle:4.1.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-12-29 16:53:02 +01:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'de.undercouch:gradle-download-task:4.0.4'
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()
2020-10-15 15:16:41 +02:00
mavenCentral()
mavenLocal()
2020-06-25 16:57:13 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
2020-09-03 19:08:53 +02:00
}