├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── VDCIndex.txt ├── addon.tar.xz ├── blanks │ ├── default.xml │ └── speaker.xml ├── functions.sh ├── install.sh ├── keys.sh ├── service.sh └── vdcs.zip ├── customize.sh ├── install.zip ├── module.prop └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/README.md -------------------------------------------------------------------------------- /common/VDCIndex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/VDCIndex.txt -------------------------------------------------------------------------------- /common/addon.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/addon.tar.xz -------------------------------------------------------------------------------- /common/blanks/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/blanks/default.xml -------------------------------------------------------------------------------- /common/blanks/speaker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/blanks/speaker.xml -------------------------------------------------------------------------------- /common/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/functions.sh -------------------------------------------------------------------------------- /common/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/install.sh -------------------------------------------------------------------------------- /common/keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/keys.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/vdcs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/common/vdcs.zip -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/customize.sh -------------------------------------------------------------------------------- /install.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/install.zip -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/module.prop -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/ViPER4Android-FX/HEAD/uninstall.sh --------------------------------------------------------------------------------