2017-02-15 08:45:57 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2015-01-21 02:58:58 +08:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2016-04-05 05:14:49 +08:00
|
|
|
jcenter()
|
2015-01-21 02:58:58 +08:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-02-15 08:45:57 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
2016-04-05 05:14:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2015-01-21 02:58:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-15 08:45:57 +08:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2015-01-21 02:58:58 +08:00
|
|
|
}
|