forked from LSPosed/LSPatch
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Use JDK 21 2. Update ksp for compatibility (compulsory) 3. R8 claims that org.lsposed.lspatch.util.ModuleLoader is needed We use rules in share/lspatch-rules.pro to ensure that LSPatch works properly after R8 engine
- Loading branch information
1 parent
2354287
commit 9a4adbb
Showing
12 changed files
with
54 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
.project | ||
.settings | ||
libxposed | ||
*.iml | ||
.gradle | ||
/local.properties | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule core
updated
10 files
+1 −1 | .github/workflows/core.yml | |
+2 −0 | .gitignore | |
+3 −3 | build.gradle.kts | |
+6 −10 | core/proguard-rules.pro | |
+3 −3 | gradle/libs.versions.toml | |
+ − | gradle/wrapper/gradle-wrapper.jar | |
+1 −1 | gradle/wrapper/gradle-wrapper.properties | |
+10 −10 | gradlew.bat | |
+16 −2 | magisk-loader/build.gradle.kts | |
+2 −0 | magisk-loader/proguard-rules.pro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-keepnames class org.lsposed.lspd.deopt.* | ||
-keepnames class org.lsposed.lspd.hooker.** { *; } | ||
-keepnames class org.lsposed.lspd.impl.LSPosedContext | ||
-keepnames class org.lsposed.lspd.impl.LSPosedHelper | ||
-keepnames class org.lsposed.lspd.impl.LSPosedHookCallback | ||
-keepnames class org.lsposed.lspd.util.Hookers | ||
-keepnames class org.lsposed.lspd.util.LspModuleClassLoader | ||
|
||
-keepattributes SourceFile,LineNumberTable |