Update core and dependencies

Update to LSPosed v1.11.0
解決了 Android 10 和 OnePlus 裝置上的特定問題,重構 Dex2Oat 以消除缺失符號錯誤並提升可靠性....
https://github.com/JingMatrix/LSPosed/releases/tag/v1.11.0
This commit is contained in:
NkBe 2026-02-10 12:49:46 +08:00
parent 271eb7bd82
commit f4eacbf2d3
No known key found for this signature in database
GPG Key ID: 9FACEE0DB6DF678E
6 changed files with 10 additions and 8 deletions

2
core

@ -1 +1 @@
Subproject commit 34f12244c931941420d011fbffb1858c8c045c1f
Subproject commit e99813b54035ad7e8e1792c808e7ee42c3fb19f0

View File

@ -4,7 +4,7 @@ accompanist = "0.36.0"
compose-destinations = "1.11.7"
shizuku = "13.1.5"
hiddenapi = "4.4.0"
compose-bom = "2025.11.00"
compose-bom = "2025.12.01"
kotlin = "2.2.21"
ksp = "2.3.2"
commons-io = "2.20.0"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

@ -17,9 +17,9 @@ java {
}
dependencies {
implementation(projects.axml)
implementation(projects.apkzlib)
implementation(projects.share.java)
implementation(projects.external.axml)
implementation(npatch.commons.io)
implementation(npatch.beust.jcommander)

View File

@ -31,10 +31,10 @@ dependencyResolutionManagement {
rootProject.name = "NPatch"
include(
":apache",
":apkzlib",
":axml",
":core",
":external:apache",
":external:axml",
":hiddenapi:bridge",
":hiddenapi:stubs",
":jar",
@ -47,15 +47,17 @@ include(
":services:xposed-service:interface",
":share:android",
":share:java",
":xposed"
)
project(":apache").projectDir = file("core/apache")
project(":axml").projectDir = file("core/axml")
project(":core").projectDir = file("core/core")
project(":external:apache").projectDir = file("core/external/apache")
project(":external:axml").projectDir = file("core/external/axml")
project(":hiddenapi:bridge").projectDir = file("core/hiddenapi/bridge")
project(":hiddenapi:stubs").projectDir = file("core/hiddenapi/stubs")
project(":services:daemon-service").projectDir = file("core/services/daemon-service")
project(":services:manager-service").projectDir = file("core/services/manager-service")
project(":services:xposed-service:interface").projectDir = file("core/services/xposed-service/interface")
project(":xposed").projectDir = file("core/xposed")
buildCache { local { removeUnusedEntriesAfterDays = 1 } }

View File

@ -6,7 +6,7 @@ public class Constants {
final static public String LOADER_DEX_ASSET_PATH = "assets/npatch/loader.dex";
final static public String META_LOADER_DEX_ASSET_PATH = "assets/npatch/metaloader.dex";
final static public String PROVIDER_DEX_ASSET_PATH = "assets/npatch/mtprovider.dex";
final static public String ORIGINAL_APK_ASSET_PATH = "assets/npatch/origin.apk";
final static public String ORIGINAL_APK_ASSET_PATH = "assets/npatch/origin.apk.np";
final static public String EMBEDDED_MODULES_ASSET_PATH = "assets/npatch/modules/";
final static public String PATCH_FILE_SUFFIX = "-npatched.apk";