Files
donext/build.gradle

30 lines
628 B
Groovy
Raw Normal View History

2015-11-24 11:23:31 -05:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2017-12-02 19:10:35 +01:00
maven {
url 'https://maven.google.com/'
name 'Google'
}
2018-05-25 20:23:56 +02:00
google()
2015-11-24 11:23:31 -05:00
}
dependencies {
2018-06-17 22:45:11 +02:00
classpath 'com.android.tools.build:gradle:3.1.3'
2015-11-24 11:23:31 -05:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2017-12-02 19:10:35 +01:00
google()
2015-11-24 11:23:31 -05:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}