sdu/build.gradle

31 lines
908 B
Groovy
Raw Normal View History

2020-02-26 09:26:28 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2020-05-27 05:54:27 +08:00
apply from: "config.gradle"
2020-02-26 09:26:28 +08:00
buildscript {
repositories {
2020-02-26 12:05:32 +08:00
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
2020-06-06 18:27:27 +08:00
maven { url 'https://jitpack.io' }
2020-05-18 16:54:02 +08:00
google()
2020-02-26 09:26:28 +08:00
}
dependencies {
2022-02-11 21:44:08 +08:00
classpath 'com.android.tools.build:gradle:7.1.1'
2020-02-26 09:26:28 +08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2020-02-26 12:05:32 +08:00
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
2020-06-06 18:27:27 +08:00
maven { url 'https://jitpack.io' }
2020-05-18 16:54:02 +08:00
google()
2020-02-26 09:26:28 +08:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}