chore: update core

然後將jar的默認簽名同步為manger的,並將構建出的文件名頭改爲NPatch
This commit is contained in:
NkBe 2025-09-11 22:49:55 +08:00
parent 43b01d9d28
commit 4b8da5c255
No known key found for this signature in database
GPG Key ID: 75EF144ED8F4D7B8
4 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ val (coreCommitCount, coreLatestTag) = FileRepositoryBuilder().setGitDir(rootPro
} }
}.getOrNull() ?: (1 to "1.0") }.getOrNull() ?: (1 to "1.0")
// sync from https://github.com/LSPosed/LSPosed/blob/master/build.gradle.kts // sync from https://github.com/JingMartix/LSPosed/blob/master/build.gradle.kts
val defaultManagerPackageName by extra("org.lsposed.npatch") val defaultManagerPackageName by extra("org.lsposed.npatch")
val apiCode by extra(100) val apiCode by extra(100)
val verCode by extra(commitCount) val verCode by extra(commitCount)

2
core

@ -1 +1 @@
Subproject commit 6703b45350bd61c56b8a901274b867a4ca1c8bda Subproject commit fd894b94b2c0790f69aed8b75f13d2cc4f5c26b9

Binary file not shown.

View File

@ -76,7 +76,7 @@ afterEvaluate {
dependsOn(tasks["assemble$variantCapped"]) dependsOn(tasks["assemble$variantCapped"])
from(variant.outputs.map { it.outputFile }) from(variant.outputs.map { it.outputFile })
into("${rootProject.projectDir}/out/$variantLowered") into("${rootProject.projectDir}/out/$variantLowered")
rename(".*.apk", "manager-v$verName-$verCode-$variantLowered.apk") rename(".*.apk", "NPatch-v$verName-$verCode-$variantLowered.apk")
} }
} }
} }