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"
|
2022-04-16 15:17:06 +08:00
|
|
|
|
2020-08-14 15:12:29 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
|
|
|
|
maven { url "https://jitpack.io"}
|
2022-04-16 15:17:06 +08:00
|
|
|
maven { url "https://www.jitpack.io" }
|
|
|
|
|
// maven { url 'https://dl.bintray.com/aweme-open-sdk-team/public' }
|
|
|
|
|
|
|
|
|
|
|
2020-09-02 17:48:29 +08:00
|
|
|
|
2020-08-14 15:12:29 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|