Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jni: consider /data/app to the fd whitelist if Xposed is detected
Latest security update has added whitelisting routine to the Zygote. Since Xposed now reads from /data/app, it's necessary to add /data/app to the whitelist. Dynamically do this if XposedBridge.jar is detected. Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
- Loading branch information
35724b0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi,
in case of Magisk use, do I have to change to this ? :
if (access("/system/framework/XposedBridge.jar", F_OK ) != -1 || access("/magisk/xposed/system/framework/XposedBridge.jar", F_OK ) != -1) {
Thank you
35724b0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@OrpheeGT Yes