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.
官网
http://repo.xposed.info/
源码
https://github.com/rovo89/
XPrivacy can prevent applications from leaking privacy sensitive data. XPrivacy can restrict the categories of data an application can access. This is done by feeding an application with no or fake data. There are several data categories which can be restricted, for example contacts or location. For example, if you restrict access to contacts for an application, this will result in sending an empty contact list to the application. Similarly, restricting an application's access to your location will result in a fake location being sent to the application. 官网 http://repo.xposed.info/module/biz.bokhorst.xprivacy 源码 https://github.com/M66B/XPrivacy/
安装
??? 下载sdk,url:https://dl-xda.xposed.info/framework/,注意版本 SDK21 is Android 5.0 (Lollipop), SDK22 is Android 5.1 (also Lollipop) and SDK23 is Android 6.0 (Marshmallow). For Nougat, SDK24 is Android 7.0 and SDK25 is Android 7.1. For Oreo, SDK26 is Android 8.0 and SDK27 is Android 8.1. ??? 使用的是elsa6p手机,android N,arm64位,因此选择下载sdk文件为xposed-v89-sdk24-arm64.zip ??? 上传sdk到手机,前提是手机必需root,执行 unzip xposed-v89-sdk24-arm64.zip
adb push system/* /system 同时需要执行脚本 adb push META-INF/com/google/android/flash-script.sh /data adb shell && cd /data/ && ./flash-script.sh ??? 下载xposed installer, url:http://repo.xposed.info/module/de.robv.android.xposed.installer ?? 安装xposedinstall, adb install Xposed_installer_3.1.apk ??? 下载xprivacy, url:http://repo.xposed.info/module/biz.bokhorst.xprivacy ??? 安装xprivacy adb install? biz.bokhorst.xprivacy_v481_ea5be7.apk
使用
?
?
?
|