Update README.md

This commit is contained in:
方块君 2022-05-15 11:36:36 +08:00
parent 77dd13fee3
commit 6ec30e4410
3 changed files with 11 additions and 7 deletions

8
.gitignore vendored
View File

@ -1,11 +1,15 @@
*.iml
*.apk
.gradle
.idea
.DS_Store
/build
/captures
/app/debug
/app/build
app/debug/*
app/build/*
.externalNativeBuild
.cxx
local.properties
genshin.jks
app/release/output-metadata.json
app/debug/output-metadata.json

View File

@ -56,7 +56,7 @@ BlackObfuscator {
}
fun getKey(project: Project): ByteArray {
val keyFile = File(project.rootProject.projectDir, "signingKey.jks")
val keyFile = File(project.rootProject.projectDir, "genshin.jks")
if (keyFile.exists() && keyFile.canRead()) {
return keyFile.readBytes()
}

View File

@ -1,10 +1,10 @@
// 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
// }
maven {
setUrl("http://192.168.1.5:8081/repository/maven-public/")
isAllowInsecureProtocol = true
}
google()
mavenCentral()
maven("https://api.xposed.info")