Files

28 lines
678 B
Groovy
Raw Permalink Normal View History

2017-01-19 19:53:50 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2018-11-01 14:00:54 +08:00
google()
2017-01-19 19:53:50 +08:00
}
dependencies {
2018-11-01 14:00:54 +08:00
classpath 'com.android.tools.build:gradle:3.2.1'
2017-01-19 20:59:42 +08:00
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
2018-11-01 14:00:54 +08:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
2017-01-19 19:53:50 +08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
2018-11-01 14:00:54 +08:00
google()
2017-01-19 19:53:50 +08:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}