集成完直播后提交代码
This commit is contained in:
47
build.gradle
Normal file
47
build.gradle
Normal file
@@ -0,0 +1,47 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user