Hypatia/build.gradle

27 lines
545 B
Groovy
Raw Normal View History

2017-12-13 22:44:56 -05:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2020-11-13 10:38:59 -05:00
classpath 'com.android.tools.build:gradle:4.1.1'
2017-12-13 22:44:56 -05: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
2017-12-26 18:54:57 -05:00
}