add new featuer guide

This commit is contained in:
Windy 2019-04-25 01:14:52 +08:00 committed by GitHub
parent 8e604a0d76
commit bb69648513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 2 deletions

View File

@ -61,7 +61,7 @@ options:
[Apktool install instructions][3] [Apktool install instructions][3]
---- ----
2019/4/15 updated ## 2019/4/15 updated
增加自动破解签名的功能,此功能默认开启,如果需要关闭可以增加`-c`即可,比如: 增加自动破解签名的功能,此功能默认开启,如果需要关闭可以增加`-c`即可,比如:
``` ```
$ java -jar ../../xpatch.jar ../../wechat.apk -c $ java -jar ../../xpatch.jar ../../wechat.apk -c
@ -70,6 +70,24 @@ $ java -jar ../../xpatch.jar ../../wechat.apk -c
>options: >options:
> -c,--crach disable craching the apk's signature. > -c,--crach disable craching the apk's signature.
---- ----
----
## 2019/4/25 updated
增加将Xposed modules打包到apk中的功能
通过help可以查看到:
>-xm,--xposed-modules <arg> the xposed mpdule files to be packaged into the ap
> k, multi files should be seperated by :(mac) or ;(
> win)
使用方式为在命令后面增加`-xm path:path:path`即可,比如:
```
$ java -jar ../../xpatch.jar ../../wechat.apk -xm ../../module1.apk:../../module2.apk
```
**注意:**
1. 多个Xposed modules使用`:`(mac)/`;`(win)分割;
2. 假如此module既被打包到apk中又安装在设备上则只会加载打包到apk中的module不会加载安装的。
这里是通过包名区分是不是同一个module。
----
## Xposed模块加载方法 ## Xposed模块加载方法
@ -175,7 +193,7 @@ or
- [dex2jar][12] - [dex2jar][12]
- [AXMLPrinter2][13] - [AXMLPrinter2][13]
[1]: https://github.com/WindySha/Xpatch/releases/download/v1.1/xpatch-v1.1.zip [1]: https://github.com/WindySha/Xpatch/releases/download/v1.3/xpatch-1.3.zip
[2]: https://github.com/WindySha/Xpatch/releases [2]: https://github.com/WindySha/Xpatch/releases
[3]: https://ibotpeaches.github.io/Apktool/install/ [3]: https://ibotpeaches.github.io/Apktool/install/
[5]: https://github.com/asLody/whale [5]: https://github.com/asLody/whale