├── .github ├── FUNDING.yml └── workflows │ ├── CHANGELOG.md │ ├── README.md │ └── create&release.yml ├── CHANGELOG.md ├── CHANGELOG_TEMPLATE.md ├── LICENSE ├── LICENSE_TEMPLATE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── customize.sh ├── module.prop ├── service.sh ├── update.json └── webroot └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: user?u=88377368 2 | -------------------------------------------------------------------------------- /.github/workflows/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | v1.0.0 2 | - Initial release 3 | -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/create&release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/.github/workflows/create&release.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/CHANGELOG_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/LICENSE_TEMPLATE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/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/systemless-hosts-KernelSU-module/HEAD/README.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/customize.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/module.prop -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/service.sh -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/update.json -------------------------------------------------------------------------------- /webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symbuzzer/systemless-hosts-KernelSU-module/HEAD/webroot/index.html --------------------------------------------------------------------------------