Skip to content

Commit afb6eee

Browse files
authored
Update README_en.md
1 parent ae14b97 commit afb6eee

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README_en.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,36 @@ $ java -jar ../../xpatch.jar ../../source.apk -c
3838
```
3939
$ java -jar ../../xpatch.jar
4040
```
41+
# How to manage Xposed modules
42+
When the new apk is installed in the device, It will load all the Xposed modules installed in the device when it's process started.
43+
44+
But you can manage the installed Xposed modules on/off state by a file in the storage.
45+
The file path is `mnt/sdcard/xposed_config/modules.list`.
46+
47+
When the new app started, it will search all the installed Xposed modules and write the the module app name and the module application name into this file. (`mnt/sdcard/xposed_config/modules.list`)
48+
eg:
49+
```
50+
com.blanke.mdwechat#MDWechat
51+
52+
liubaoyua.customtext#文本自定义
53+
```
54+
Each line of this file is Application Name#App Name.
55+
You can disable a Xposed module by add `#` before the Application Name, eg:
56+
```
57+
#com.blanke.mdwechat#MDWechat
58+
59+
liubaoyua.customtext#文本自定义
60+
```
61+
This means the MDWechat Xposed module is disabled.
62+
63+
```
64+
#com.blanke.mdwechat#MDWechat
65+
66+
#liubaoyua.customtext#文本自定义
67+
```
68+
This means all Xposed modules are disabled.
69+
70+
Note: The target app must have file system access permission. Otherwise this file will not be created, and all xposed modules are enabled.
4171

4272

4373
# Todo list

0 commit comments

Comments
 (0)