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.
Android 8.1 ~ 15
- Install Magisk v26+
- Download and install LSPosed in Magisk
- Reboot
- Open LSPosed manager from notification
- Have fun :)
- For stable releases, please go to GitHub Releases page
- For canary build, please check GitHub Actions
Note: debug builds are only available in GitHub Actions.
- If you encounter problems while using LSPosed, please follow the TROUBLESHOOT guide.
- To understand the mechanism of LSPosed, please read the DEVELOPMENT introduction.
- Xposed modules submit to LSPosed Module Repository will be shown in the LSPosed manager.
- UI translations are managed in the Crowdin project.
- Magisk: makes all these possible
- XposedBridge: the OG Xposed framework APIs
- LSPlant: the core ART hooking framework
- Dobby: inline hooker for
LSPlant
andnative_api
implement - EdXposed: fork source
- xz-embedded: decompress
.gnu_debugdata
header section of strippedlibart.so
Riru: provides a way to inject code into zygote processSandHook: ART hooking framework for SandHook variantYAHFA: previous ART hooking frameworkdexmaker and dalvikdx: to dynamically generate YAHFA hooker classes
LSPosed is licensed under the GNU General Public License v3 (GPL-3) (http://www.gnu.org/copyleft/gpl.html).