Files
July/build.gradle

33 lines
657 B
Groovy
Raw Normal View History

2020-08-14 15:12:29 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
2020-09-02 17:48:29 +08:00
maven {
url "https://plugins.gradle.org/m2/"
}
2020-08-14 15:12:29 +08:00
}
dependencies {
2020-09-02 17:48:29 +08:00
2020-08-14 16:49:32 +08:00
classpath 'com.android.tools.build:gradle:3.5.0'
2020-08-21 18:09:37 +08:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
2020-09-02 17:48:29 +08:00
classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.6"
2020-08-14 15:12:29 +08:00
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io"}
2020-09-02 17:48:29 +08:00
2020-08-14 15:12:29 +08:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}