├── .gitattributes ├── .gitignore ├── License.md ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── check_syntax.bat ├── check_syntax.sh ├── install.sh ├── mm ├── module.prop └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _builds 2 | _resources 3 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/HEAD/License.md -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/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/mm/HEAD/README.md -------------------------------------------------------------------------------- /check_syntax.bat: -------------------------------------------------------------------------------- 1 | bash check_syntax.sh 2 | pause 3 | -------------------------------------------------------------------------------- /check_syntax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/HEAD/check_syntax.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/HEAD/install.sh -------------------------------------------------------------------------------- /mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/HEAD/mm -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/HEAD/module.prop -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Repo/mm/HEAD/uninstall.sh --------------------------------------------------------------------------------