├── .gitignore ├── README.md ├── Xposed.pm ├── busybox.pl ├── create_uninstaller.pl ├── local_manifests ├── remove_art.xml ├── xposed_sdk15.xml ├── xposed_sdk16.xml ├── xposed_sdk17.xml ├── xposed_sdk18.xml ├── xposed_sdk19.xml ├── xposed_sdk21.xml ├── xposed_sdk22.xml └── xposed_sdk23.xml ├── signapk.jar ├── signkey.pk8 ├── signkey.x509.pem └── zipstatic ├── _all ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ └── updater-script └── common │ ├── 00xposed │ └── file_contexts_image ├── _uninstaller ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script └── common │ ├── 00uninstall │ └── file_contexts_image ├── bundle └── META-INF │ └── com │ └── google │ └── android │ └── update-binary └── single └── META-INF └── com └── google └── android └── update-binary /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/README.md -------------------------------------------------------------------------------- /Xposed.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/Xposed.pm -------------------------------------------------------------------------------- /busybox.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/busybox.pl -------------------------------------------------------------------------------- /create_uninstaller.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/create_uninstaller.pl -------------------------------------------------------------------------------- /local_manifests/remove_art.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/remove_art.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk15.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk16.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk17.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk18.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk19.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk21.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk22.xml -------------------------------------------------------------------------------- /local_manifests/xposed_sdk23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/local_manifests/xposed_sdk23.xml -------------------------------------------------------------------------------- /signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/signapk.jar -------------------------------------------------------------------------------- /signkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/signkey.pk8 -------------------------------------------------------------------------------- /signkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/signkey.x509.pem -------------------------------------------------------------------------------- /zipstatic/_all/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/zipstatic/_all/META-INF/com/google/android/updater-script -------------------------------------------------------------------------------- /zipstatic/_all/common/00xposed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/zipstatic/_all/common/00xposed -------------------------------------------------------------------------------- /zipstatic/_all/common/file_contexts_image: -------------------------------------------------------------------------------- 1 | /su(/.*)? u:object_r:system_file:s0 2 | -------------------------------------------------------------------------------- /zipstatic/_uninstaller/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/zipstatic/_uninstaller/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /zipstatic/_uninstaller/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/zipstatic/_uninstaller/META-INF/com/google/android/updater-script -------------------------------------------------------------------------------- /zipstatic/_uninstaller/common/00uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/zipstatic/_uninstaller/common/00uninstall -------------------------------------------------------------------------------- /zipstatic/_uninstaller/common/file_contexts_image: -------------------------------------------------------------------------------- 1 | /su(/.*)? u:object_r:system_file:s0 2 | -------------------------------------------------------------------------------- /zipstatic/bundle/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/zipstatic/bundle/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /zipstatic/single/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/XposedTools/HEAD/zipstatic/single/META-INF/com/google/android/update-binary --------------------------------------------------------------------------------