build.gradle 612 Bytes
Newer Older
1 2 3
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
4
        mavenCentral()
5 6 7
        google()
    }
    dependencies {
郑娜伟 committed
8
        classpath 'com.android.tools.build:gradle:3.4.2'
9
        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
10 11 12 13 14 15 16
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
17
        mavenCentral()
18 19 20 21 22 23 24
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}