Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
e5d1566
Implement libxposed 101
JingMatrix Mar 22, 2026
18ca366
Refactor Java layer implementations into Kotin
JingMatrix Mar 22, 2026
ba75f92
Delete old java implementations
JingMatrix Mar 22, 2026
0e46709
Fix VectorContext implements
JingMatrix Mar 22, 2026
05f29a7
Rename classes to compile core module
JingMatrix Mar 22, 2026
e80a908
Adapt changes into zygisk module
JingMatrix Mar 22, 2026
675dc5a
Fix crashes during testing
JingMatrix Mar 23, 2026
5a2a34a
Allow multiple chain proceeding
JingMatrix Mar 23, 2026
58812c4
Avoid depending on dummy class
JingMatrix Mar 23, 2026
f7bb788
Fix class resolution errors
JingMatrix Mar 23, 2026
dbf1f4d
Fix typo
JingMatrix Mar 23, 2026
059a0f7
Debug manager
JingMatrix Mar 23, 2026
f461953
Fix resolveActivity hook
JingMatrix Mar 23, 2026
83bcda1
Add docs in README
JingMatrix Mar 23, 2026
7479987
Minor fixes
JingMatrix Mar 23, 2026
bdd7c3b
Refactor `core` module into `legacy`
JingMatrix Mar 23, 2026
6862c5f
Fix typos and disable DexParserBridge
JingMatrix Mar 23, 2026
2dcf376
Handle exceptions gracefully
JingMatrix Mar 23, 2026
7f549c4
Fix comments
JingMatrix Mar 23, 2026
99f6e95
First step of updating service to API 101
JingMatrix Mar 23, 2026
38f6d73
Adapt constructor changes in API 101
JingMatrix Mar 23, 2026
80b5901
Fix BuildConfig fields
JingMatrix Mar 23, 2026
1282701
Properly implement getFrameworkProperties
JingMatrix Mar 23, 2026
4f10187
Skip slicer processing for unmodified DEX files
JingMatrix Mar 24, 2026
377da0b
Add debugging logs
JingMatrix Mar 24, 2026
f229047
Refactor LoadedApk hooks to strictly follow libxposed API 101
JingMatrix Mar 24, 2026
93eabcc
Completely remove dexparser
JingMatrix Mar 24, 2026
77f8e5b
Trigger onPackageReady for split APKs
JingMatrix Mar 24, 2026
f767241
Fix release build issue
JingMatrix Mar 24, 2026
630db98
Reduce detection surface for injected target
JingMatrix Mar 24, 2026
06cc4f8
Customize generated class and source names of hooks
JingMatrix Mar 24, 2026
d691000
Add missing log utils
JingMatrix Mar 25, 2026
5918019
Fix class loader
JingMatrix Mar 25, 2026
492aa66
[skip ci] fix docs
JingMatrix Mar 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/java/org/lsposed/manager/ConfigManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static String getXposedVersionName() {
}
}

public static int getXposedVersionCode() {
public static long getXposedVersionCode() {
try {
return LSPManagerServiceHolder.getService().getXposedVersionCode();
} catch (RemoteException e) {
Expand Down
3 changes: 0 additions & 3 deletions core/.gitignore

This file was deleted.

35 changes: 0 additions & 35 deletions core/build.gradle.kts

This file was deleted.

37 changes: 0 additions & 37 deletions core/proguard-rules.pro

This file was deleted.

27 changes: 0 additions & 27 deletions core/src/main/java/de/robv/android/xposed/IXposedMod.java

This file was deleted.

115 changes: 0 additions & 115 deletions core/src/main/java/org/lsposed/lspd/core/ApplicationServiceClient.java

This file was deleted.

105 changes: 0 additions & 105 deletions core/src/main/java/org/lsposed/lspd/core/Startup.java

This file was deleted.

Loading