├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── install.sh ├── post-fs-data.sh ├── sepolicy.sh ├── service.sh ├── system.prop ├── uninstall.sh └── unityfiles │ ├── addon.sh │ ├── modidsysover.sh │ ├── tools.tar.gz │ ├── util_functions.sh │ └── util_functions2.sh ├── config.sh ├── custom ├── 21.tar.xz ├── 22.tar.xz ├── 23.tar.xz ├── 24.tar.xz ├── 25.tar.xz ├── 26.tar.xz ├── 27.tar.xz └── XposedBridge.jar ├── module.prop └── system ├── framework └── XposedBridge.jar └── priv-app └── XposedInstaller └── XposedInstaller.apk /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/README.md -------------------------------------------------------------------------------- /common/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/install.sh -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/sepolicy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/sepolicy.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/system.prop -------------------------------------------------------------------------------- /common/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/uninstall.sh -------------------------------------------------------------------------------- /common/unityfiles/addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/unityfiles/addon.sh -------------------------------------------------------------------------------- /common/unityfiles/modidsysover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/unityfiles/modidsysover.sh -------------------------------------------------------------------------------- /common/unityfiles/tools.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/unityfiles/tools.tar.gz -------------------------------------------------------------------------------- /common/unityfiles/util_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/unityfiles/util_functions.sh -------------------------------------------------------------------------------- /common/unityfiles/util_functions2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/common/unityfiles/util_functions2.sh -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/config.sh -------------------------------------------------------------------------------- /custom/21.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/21.tar.xz -------------------------------------------------------------------------------- /custom/22.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/22.tar.xz -------------------------------------------------------------------------------- /custom/23.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/23.tar.xz -------------------------------------------------------------------------------- /custom/24.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/24.tar.xz -------------------------------------------------------------------------------- /custom/25.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/25.tar.xz -------------------------------------------------------------------------------- /custom/26.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/26.tar.xz -------------------------------------------------------------------------------- /custom/27.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/27.tar.xz -------------------------------------------------------------------------------- /custom/XposedBridge.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/custom/XposedBridge.jar -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/module.prop -------------------------------------------------------------------------------- /system/framework/XposedBridge.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/system/framework/XposedBridge.jar -------------------------------------------------------------------------------- /system/priv-app/XposedInstaller/XposedInstaller.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/Xposed-Framework-Unity/HEAD/system/priv-app/XposedInstaller/XposedInstaller.apk --------------------------------------------------------------------------------