This commit is contained in:
coco
2026-07-03 15:56:07 +08:00
commit caef23209c
5767 changed files with 1004268 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
apply from: "config.gradle"
buildscript {
ext.gradle_version = '4.0.0'
ext.kotlin_version = '1.3.72'
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'http://47.93.38.184:8081/nexus/content/repositories/faithhb/'
}
maven {
url 'http://47.93.38.184:8081/nexus/content/repositories/github/' // widget发布版本已切换到该地址
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}