Files
July/build.gradle

27 lines
515 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()
}
dependencies {
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-08-14 15:12:29 +08:00
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io"}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}