A fork of JingMatrix's LSPosed/Vector, aiming to make GKMSPatch work
Go to file
Wang Han 64beb89789
[core] Print versionCode in log header (#212)
2021-02-27 02:46:00 +00:00
.github Bump New Ver (#204) 2021-02-26 08:22:56 +00:00
app [app & key-selector] Deprecate SandHook (#208) 2021-02-27 01:57:21 +08:00
core [core] Print versionCode in log header (#212) 2021-02-27 02:46:00 +00:00
gradle/wrapper [core] Implement get all installed packages from all users 2021-02-22 18:46:29 +08:00
hiddenapi-bridge [core] Cleanup Xposed Bridge implementation 2021-02-22 18:46:29 +08:00
hiddenapi-stubs [core] Add reboot and force stop 2021-02-24 20:58:14 +08:00
key-selector [app & key-selector] Deprecate SandHook (#208) 2021-02-27 01:57:21 +08:00
manager-service [core] Add reboot and force stop 2021-02-24 20:58:14 +08:00
sandhook-annotation Add SandHook-hooklib to source tree 2020-12-11 03:31:56 +08:00
sandhook-hooklib Merge libsandhook.so into core so to reduce binary size 2021-01-30 00:35:29 +08:00
service@b012241d59 [core] Implement get all installed packages from all users 2021-02-22 18:46:29 +08:00
.gitattributes Migrate to new EdXposedManager installer app 2019-02-04 03:27:46 +08:00
.gitignore Merge remote-tracking branch 'app/master' 2021-01-25 20:55:14 +08:00
.gitmodules [core] Introduce c++ dexbuilder to replace dexmaker (#207) 2021-02-26 18:06:41 +00:00
LICENSE [README] Fix license 2021-02-13 17:28:01 +08:00
README.md [core] Migrate configuation 2021-02-22 18:46:29 +08:00
build.gradle [core] [app] Use commit count as version code (#195) 2021-02-25 02:36:52 +00:00
gradle.properties [core] Enable optimize (#205) 2021-02-26 23:45:19 +08:00
gradlew Refactor project structure 2019-03-19 14:32:44 +08:00
gradlew.bat Migrate to GitHub 2019-01-19 01:54:14 +08:00
settings.gradle Seperate manager service 2021-02-22 18:46:29 +08:00

README.md

LSPosed Framework

Core Manager

Introduction

A Riru module trying to provide an ART hooking framework (initially for Android Pie) which delivers consistent APIs with the OG Xposed, leveraging YAHFA and SandHook hooking framework, supports Android 8.0 ~ 11.

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 to decide for one. No way to combine them, unless the author builds multiple APKs with different combinations.

Supported Versions

Android 8 ~ 11

Install

  1. Install Magisk v21+
  2. Install Riru v23+ from Magisk repo.
  3. Download and install LSPosed in Magisk Manager
  4. Install LSPosed Manager
  5. Reboot.
  6. Have fun! :)

Download

For stable release, please go to Github Release page For canary build, please check Github Actions Note: debug build is only available on Github Actions.

Get Help

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

For Developers

Developers are welcomed to write Xposed modules with hooks based on LSPosed Framework. Module written based on LSPosed framework is fully compatible with the original Xposed Framework, so contrary a Xposed Framework-based module will work well with the LSPosed framework too.

We use the module repository of the original Xposed, so you simply upload the module to repository, then you can download your module in LSPosed.

Community Discussion

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

Credits

  • YAHFA: the core ART hooking framework
  • Magisk: makes all these possible
  • Riru: provides a way to inject codes into zygote process
  • XposedBridge: the OG xposed framework APIs
  • dexmaker and dalvikdx: to dynamiclly generate YAHFA hooker classes
  • SandHook: ART hooking framework for SandHook variant
  • Dobby: used for inline hooking
  • EdXposed: fork source

License

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