A fork of JingMatrix's LSPosed/Vector, aiming to make GKMSPatch work
Go to file
JingMatrix 1d09934523 Remove redundant MapInfo::Scan function
With inline hook, we no longer need to scan process virtual maps.

Moreover, I can no longer justify the point 3 stated in commit
156c6ae855 by experiments, which is
mysterious given my previous experiments done for the commit
3c020a9cd7.

Currently, only one thing is sure: reading `/proc/self/map` can be
detected by Holmes. Hence, it is always a good practice to not inject
unnecessary codes during the preAppSpecialize API.
2024-12-11 17:02:38 +01:00
.github Remove Riru support 2024-09-23 11:10:25 +02:00
apache Bump the submodule group with 2 updates (#108) 2024-12-01 08:01:07 +01:00
app [translation] Update translation from Crowdin (#112,#116) 2024-12-09 09:53:39 +01:00
axml Bump the submodule group with 3 updates (#86) 2024-11-01 09:50:44 +01:00
core Clear compilation warnings (#121) 2024-12-09 22:15:18 +01:00
daemon Avoid start multiple log watchdog threads 2024-12-10 11:56:42 +01:00
dex2oat Clear compilation warnings (#121) 2024-12-09 22:15:18 +01:00
external Clear compilation warnings (#121) 2024-12-09 22:15:18 +01:00
gradle Bump the maven group with 3 updates (#110) 2024-12-03 12:29:49 +01:00
hiddenapi Fix `IContentProvider` for Android P and below (#2735) 2023-09-01 21:54:50 +08:00
magisk-loader Remove redundant MapInfo::Scan function 2024-12-11 17:02:38 +01:00
services Add more options in the Select menu 2024-12-04 21:35:05 +01:00
.gitattributes Ndk build (#753) 2021-06-20 11:46:38 +08:00
.gitignore Rename Apache class names to avoid conflicts 2024-10-31 14:43:43 +01:00
.gitmodules Remove LSPlt submodule 2024-09-23 11:10:37 +02:00
LICENSE [README] Fix license 2021-02-13 17:28:01 +08:00
README.md Abandon PLT hook for LSPlant 2024-12-04 11:55:28 +01:00
build.gradle.kts Update dependencies 2024-10-06 10:15:22 +02:00
crowdin.yml [skip ci] Config crowdin 2024-07-24 10:27:25 +02:00
gradle.properties Adjust proguard for Android R8 2024-05-18 23:48:43 +02:00
gradlew Update dependencies (#16) 2024-09-12 11:31:07 +02:00
gradlew.bat Update dependencies (#16) 2024-09-12 11:31:07 +02:00
settings.gradle.kts Add commons-lang as a subproject 2024-09-22 14:25:45 +02:00

README.md

LSPosed Framework

Build Crowdin Download Total

Introduction

A Zygisk module trying to provide an ART hooking framework which delivers consistent APIs with the OG Xposed, leveraging LSPlant hooking framework.

Xposed is a framework for modules that can change the behavior of the system and apps without touching any APKs. That's great because it means that modules can work for different versions and even ROMs without any changes (as long as the original code was not changed too much). It's also easy to undo. As all changes are done in the memory, you just need to deactivate the module and reboot to get your original system back. There are many other advantages, but here is just one more: multiple modules can do changes to the same part of the system or app. With modified APKs, you have to choose one. No way to combine them, unless the author builds multiple APKs with different combinations.

Supported Versions

Android 8.1 ~ 15

Install

  1. Install Magisk v26+
  2. Download and install LSPosed in Magisk app
  3. Reboot
  4. Open LSPosed manager from notification
  5. Have fun :)

Download

Note: debug builds are only available in Github Actions.

Get Help

Only bug reports from THE LATEST DEBUG BUILD will be accepted.

  • GitHub issues: Issues
  • (For Chinese speakers) 本项目只接受英语标题的issue。如果您不懂英语请使用翻译工具

For Developers

Developers are welcome to write Xposed modules with hooks based on LSPosed Framework. A module based on LSPosed framework is fully compatible with the original Xposed Framework, and vice versa, a Xposed Framework-based module will work well with LSPosed framework too.

We use our own module repository. We welcome developers to submit modules to our repository, and then modules can be downloaded in LSPosed.

Community Discussion

Notice: These community groups don't accept any bug report, please use Get help to report.

Translation Contributing

You can contribute translation here.

Credits

  • Magisk: makes all these possible
  • XposedBridge: the OG Xposed framework APIs
  • LSPlant: the core ART hooking framework
  • Dobby: inline hooker for LSPlant and native_api implement
  • EdXposed: fork source
  • xz-embedded: decompress .gnu_debugdata header section of stripped libart.so
  • Riru: provides a way to inject code into zygote process
  • ~SandHook: ART hooking framework for SandHook variant~
  • ~YAHFA: previous ART hooking framework~
  • ~dexmaker and dalvikdx: to dynamically generate YAHFA hooker classes~
  • ~DexBuilder: to dynamically generate YAHFA hooker classes~

License

LSPosed is licensed under the GNU General Public License v3 (GPL-3) (http://www.gnu.org/copyleft/gpl.html).