Teraplex/build.gradle

26 lines
640 B
Groovy
Raw Normal View History

2021-03-04 21:18:38 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
2021-05-28 20:57:25 +02:00
maven { url 'https://maven.google.com/' }
2021-03-04 21:18:38 +01:00
}
dependencies {
2021-07-11 15:50:26 +02:00
classpath 'com.android.tools.build:gradle:4.2.2'
2021-03-04 21:18:38 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
2021-05-28 20:57:25 +02:00
maven { url 'https://maven.google.com/' }
2021-03-04 21:18:38 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}