├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── addon └── Volume-Key-Selector │ ├── README.md │ ├── preinstall.sh │ └── tools │ ├── arm │ └── keycheck │ └── x86 │ └── keycheck ├── common ├── post-fs-data.sh ├── sepolicy.sh ├── service.sh ├── system.prop ├── unity_install.sh ├── unity_uninstall.sh ├── unityfiles │ ├── addon.sh │ ├── tools │ │ ├── arm │ │ │ └── busybox │ │ └── x86 │ │ │ └── busybox │ └── util_functions.sh └── v4afx.sh ├── custom.tar.xz ├── install.sh ├── module.prop └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/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/ViPER4Android-FX-Legacy/HEAD/README.md -------------------------------------------------------------------------------- /addon/Volume-Key-Selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/addon/Volume-Key-Selector/README.md -------------------------------------------------------------------------------- /addon/Volume-Key-Selector/preinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/addon/Volume-Key-Selector/preinstall.sh -------------------------------------------------------------------------------- /addon/Volume-Key-Selector/tools/arm/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/addon/Volume-Key-Selector/tools/arm/keycheck -------------------------------------------------------------------------------- /addon/Volume-Key-Selector/tools/x86/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/addon/Volume-Key-Selector/tools/x86/keycheck -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/sepolicy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/sepolicy.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/system.prop -------------------------------------------------------------------------------- /common/unity_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/unity_install.sh -------------------------------------------------------------------------------- /common/unity_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/unity_uninstall.sh -------------------------------------------------------------------------------- /common/unityfiles/addon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/unityfiles/addon.sh -------------------------------------------------------------------------------- /common/unityfiles/tools/arm/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/unityfiles/tools/arm/busybox -------------------------------------------------------------------------------- /common/unityfiles/tools/x86/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/unityfiles/tools/x86/busybox -------------------------------------------------------------------------------- /common/unityfiles/util_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/unityfiles/util_functions.sh -------------------------------------------------------------------------------- /common/v4afx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/common/v4afx.sh -------------------------------------------------------------------------------- /custom.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/custom.tar.xz -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/install.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/module.prop -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealahrion/ViPER4Android-FX-Legacy/HEAD/uninstall.sh --------------------------------------------------------------------------------