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

81 lines
2.1 KiB
Plaintext

plugins {
id("com.android.application")
id("kotlin-android")
id("top.niunaijun.blackobfuscator")
id("icu.nullptr.stringfuck")
}
android {
compileSdk = 32
defaultConfig {
applicationId = "xfk233.genshinproxy"
minSdk = 28
targetSdk = 32
versionCode = 5
versionName = "1.5"
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
setProguardFiles(listOf(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro", "proguard-log.pro"))
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.majorVersion
}
packagingOptions {
resources {
excludes += "/META-INF/**"
excludes += "/kotlin/**"
excludes += "/*.txt"
excludes += "/*.bin"
}
dex {
useLegacyPackaging = true
}
}
applicationVariants.all {
outputs.all {
(this as com.android.build.gradle.internal.api.BaseVariantOutputImpl).outputFileName =
"GenshinProxy-$versionName($versionCode)-$name.apk"
}
}
}
BlackObfuscator {
isEnabled = true
depth = 3
setObfClass("xfk233.genshinproxy")
}
fun getKey(project: Project): ByteArray {
val keyFile = File(project.rootProject.projectDir, "genshin.jks")
if (keyFile.exists() && keyFile.canRead()) {
return keyFile.readBytes()
}
println("Key not found!")
return "xfk2333".encodeToByteArray()
}
stringFuck {
key = getKey(rootProject)
isPrintDebugInfo = false
isWorkOnDebug = true
isWhiteList = false
obfuscationList = setOf("xfk233.genshinproxy")
}
dependencies {
compileOnly("de.robv.android.xposed:api:82")
compileOnly("de.robv.android.xposed:api:82:sources")
implementation("com.github.kyuubiran:EzXHelper:0.9.2")
implementation("icu.nullptr.stringfuck:library:0.2.2")
}