├── .gitattributes ├── .gitignore ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── changelog.md ├── common ├── addon │ └── placeholder ├── functions.sh └── install.sh ├── customize.sh ├── install.zip ├── module.prop ├── system └── placeholder ├── uninstall.sh ├── update.json └── zygisk └── placeholder /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/changelog.md -------------------------------------------------------------------------------- /common/addon/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/common/functions.sh -------------------------------------------------------------------------------- /common/install.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/customize.sh -------------------------------------------------------------------------------- /install.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/install.zip -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/module.prop -------------------------------------------------------------------------------- /system/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/uninstall.sh -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/MMT-Extended-Next/HEAD/update.json -------------------------------------------------------------------------------- /zygisk/placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------