mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-04 09:45:19 +08:00
30 lines
966 B
Groovy
30 lines
966 B
Groovy
buildscript {
|
|
ext.kotlin_version = "1.6.10"
|
|
repositories {
|
|
google()
|
|
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
|
maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter' }
|
|
maven { url "https://www.jitpack.io" }
|
|
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:7.0.4"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
|
|
maven { url 'https://maven.aliyun.com/nexus/content/repositories/jcenter' }
|
|
maven { url "https://www.jitpack.io" }
|
|
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |