This commit is contained in:
Nullptr 2022-05-15 10:51:52 +08:00
parent 7508d747aa
commit f49704200d
No known key found for this signature in database
GPG Key ID: 0B9D02052FF536BD
3 changed files with 23 additions and 11 deletions

View File

@ -2,7 +2,7 @@ plugins {
id("com.android.application")
id("kotlin-android")
id("top.niunaijun.blackobfuscator")
// id("icu.nullptr.stringfuck") version "0.2.1"
id("icu.nullptr.stringfuck")
}
android {
@ -38,17 +38,17 @@ BlackObfuscator {
setObfClass("xfk233.genshinproxy")
}
//stringFuck {
// setKey("xfk233")
// isPrintDebugInfo = false
// isWorkOnDebug = true
// isWhiteList = false
// obfuscationList = setOf("xfk233.genshinproxy")
//}
stringFuck {
setKey("xfk233")
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.1")
}
implementation("icu.nullptr.stringfuck:library:0.2.2")
}

View File

@ -1,6 +1,6 @@
#Sat May 14 18:18:27 CST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

View File

@ -6,5 +6,17 @@ dependencyResolutionManagement {
jcenter() // Warning: this repository is going to shut down soon
}
}
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id("icu.nullptr.stringfuck") version "0.2.2"
}
}
rootProject.name = "GenshinProxy"
include(":app")