[skip ci] README typo fixes (#1473)
This commit is contained in:
parent
86b896efb0
commit
61d834efec
28
README.md
28
README.md
|
|
@ -1,12 +1,12 @@
|
|||
# LSPosed Framework
|
||||
|
||||
 [](https://lsposed.crowdin.com/lsposed) [](https://t.me/LSPosed) [](https://qun.qq.com/qqweb/qunpro/share?_wv=3&_wwv=128&inviteCode=1xY0qn&from=246610&biz=ka) [](https://github.com/LSPosed/LSPosed/releases/latest) [](https://github.com/LSPosed/LSPosed/releases)
|
||||
 [](https://lsposed.crowdin.com/lsposed) [](https://t.me/LSPosed) [](https://qun.qq.com/qqweb/qunpro/share?_wv=3&_wwv=128&inviteCode=1xY0qn&from=246610&biz=ka) [](https://github.com/LSPosed/LSPosed/releases/latest) [](https://github.com/LSPosed/LSPosed/releases)
|
||||
|
||||
## Introduction
|
||||
|
||||
A Riru module trying to provide an ART hooking framework which delivers consistent APIs with the OG Xposed, leveraging YAHFA 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 to decide for one. No way to combine them, unless the author builds multiple APKs with different combinations.
|
||||
> 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
|
||||
|
||||
|
|
@ -18,19 +18,19 @@ Android 8.1 ~ 12, 12L DP1
|
|||
2. Install [Riru](https://github.com/RikkaApps/Riru/releases) v25+ from Magisk repo
|
||||
3. [Download](#download) and install LSPosed in Magisk app
|
||||
4. Reboot
|
||||
5. Follow the prompts to add LSPosed shortcut to launcher
|
||||
- Some launchers won't show the prompt but silently add the shortcut
|
||||
- If the shortcut cannot be added, you can install the manager manually by `/data/adb/lspd/manager.apk`
|
||||
- If you accidentally delete the shortcut, reboot your device or install the manager manually to add the shortcut again
|
||||
- If you don't need the shortcut, install the manager manually and you can disable future shortcut adding in the settings
|
||||
5. Follow the prompt to add LSPosed shortcut to launcher
|
||||
- Some launchers won't show a prompt but silently add the shortcut
|
||||
- If the shortcut cannot be added, you can install the manager located at `/data/adb/lspd/manager.apk` manually
|
||||
- If you accidentally deleted the shortcut, reboot your device or install the manager manually to add the shortcut again
|
||||
- If you don't need a shortcut, install the manager manually and you can disable future shortcut being added in the settings
|
||||
- In any case, you can dial `*#*#5776733#*#*` (aka LSPosed) to launch the manager if you have a dialer
|
||||
6. Have fun :)
|
||||
|
||||
## Download
|
||||
|
||||
For stable release, please go to [Github Release page](https://github.com/LSPosed/LSPosed/releases)
|
||||
For stable releases, please go to [Github Releases page](https://github.com/LSPosed/LSPosed/releases)
|
||||
For canary build, please check [Github Actions](https://github.com/LSPosed/LSPosed/actions)
|
||||
Note: debug build is only available on Github Actions.
|
||||
Note: debug builds are only available in Github Actions.
|
||||
|
||||
## Get Help
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ Note: debug build is only available on Github Actions.
|
|||
|
||||
## 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.
|
||||
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.
|
||||
|
||||
- [Xposed Framework API](https://api.xposed.info/)
|
||||
|
||||
|
|
@ -51,9 +51,9 @@ We use our own module repository. We welcome developers to submit modules to our
|
|||
|
||||
- Telegram: [@LSPosed](https://t.me/s/LSPosed)
|
||||
|
||||
Notice: These community group don't accept any bug report, please use [Get help](#get-help) to report.
|
||||
Notice: These community groups don't accept any bug report, please use [Get help](#get-help) to report.
|
||||
|
||||
## Translation Contribute
|
||||
## Translation Contributing
|
||||
|
||||
You can contribute translation [here](https://lsposed.crowdin.com/lsposed).
|
||||
|
||||
|
|
@ -61,8 +61,8 @@ You can contribute translation [here](https://lsposed.crowdin.com/lsposed).
|
|||
|
||||
- [YAHFA](https://github.com/rk700/YAHFA): the core ART hooking framework
|
||||
- [Magisk](https://github.com/topjohnwu/Magisk/): makes all these possible
|
||||
- [Riru](https://github.com/RikkaApps/Riru): provides a way to inject codes into zygote process
|
||||
- [XposedBridge](https://github.com/rovo89/XposedBridge): the OG xposed framework APIs
|
||||
- [Riru](https://github.com/RikkaApps/Riru): provides a way to inject code into zygote process
|
||||
- [XposedBridge](https://github.com/rovo89/XposedBridge): the OG Xposed framework APIs
|
||||
- [DexBuilder](https://github.com/LSPosed/DexBuilder): to dynamically generate YAHFA hooker classes
|
||||
- [Dobby](https://github.com/jmpews/Dobby): used for inline hooking
|
||||
- [EdXposed](https://github.com/ElderDrivers/EdXposed): fork source
|
||||
|
|
|
|||
Loading…
Reference in New Issue