GenshinProxy/build.gradle.kts
2022-05-15 11:36:36 +08:00

25 lines
889 B
Plaintext

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven {
setUrl("http://192.168.1.5:8081/repository/maven-public/")
isAllowInsecureProtocol = true
}
google()
mavenCentral()
maven("https://api.xposed.info")
maven("https://jitpack.io")
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.3")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
classpath("com.github.CodingGay:BlackObfuscator-ASPlugin:3.7")
classpath("icu.nullptr.stringfuck:plugin:0.2.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
tasks.register("Delete", Delete::class) {
delete(rootProject.buildDir)
}