├── .github └── workflows │ ├── autoupdate.yml │ ├── build.yml │ └── shellcheck.yml ├── .gitignore ├── .shellcheckrc ├── .vscode └── settings.json ├── README.md ├── compile.sh ├── deploy.sh ├── lists.txt ├── magiskmodule └── META-INF │ └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── module.prop ├── shellcheck.sh ├── update.sh └── update_template.json /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/.gitignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/README.md -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/compile.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/deploy.sh -------------------------------------------------------------------------------- /lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/lists.txt -------------------------------------------------------------------------------- /magiskmodule/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/magiskmodule/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /magiskmodule/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/module.prop -------------------------------------------------------------------------------- /shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/shellcheck.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/update.sh -------------------------------------------------------------------------------- /update_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programminghoch10/MagicalProtection/HEAD/update_template.json --------------------------------------------------------------------------------