You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
0 commit comments