├── .status.sh ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── action.sh ├── allowed-modules.txt ├── allowed-scripts.txt ├── changelog.md ├── customize.sh ├── module.prop ├── post-fs-data.sh ├── service.sh ├── uninstall.sh ├── update.Json └── webroot ├── .nomedia ├── index.css ├── index.html └── index.js /.status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/.status.sh -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/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-Alt-Repo/YetAnotherBootloopProtector/HEAD/README.md -------------------------------------------------------------------------------- /action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/action.sh -------------------------------------------------------------------------------- /allowed-modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/allowed-modules.txt -------------------------------------------------------------------------------- /allowed-scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/allowed-scripts.txt -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/changelog.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/customize.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/module.prop -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/post-fs-data.sh -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/service.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- 1 | rm -f "/data/adb/service.d/.status.sh" 2 | -------------------------------------------------------------------------------- /update.Json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/update.Json -------------------------------------------------------------------------------- /webroot/.nomedia: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /webroot/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/webroot/index.css -------------------------------------------------------------------------------- /webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/webroot/index.html -------------------------------------------------------------------------------- /webroot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/YetAnotherBootloopProtector/HEAD/webroot/index.js --------------------------------------------------------------------------------