47 lines
1.5 KiB
Groovy
47 lines
1.5 KiB
Groovy
buildscript {
|
|
repositories {
|
|
//阿里云镜像
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/grails-core'}
|
|
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
|
maven { url "https://maven.aliyun.com/repository/releases" }
|
|
maven { url "https://maven.aliyun.com/nexus/content/repositories/releases" }
|
|
maven { url "https://jitpack.io" }
|
|
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
apply from: './AndroidThirdParty/config.gradle'
|
|
dependencies {
|
|
classpath 'com.github.kezong:fat-aar:1.3.8'
|
|
classpath externalAndroidBuildGradlePlugin
|
|
classpath externalAndroidKotlinPlugin
|
|
}
|
|
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
//阿里云镜像
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/grails-core'}
|
|
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
|
maven { url "https://maven.aliyun.com/repository/releases" }
|
|
maven { url 'https://maven.aliyun.com/nexus/content/repositories/releases/' }
|
|
maven { url "https://jitpack.io" }
|
|
|
|
mavenCentral()
|
|
google()
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |