├── .github └── FUNDING.yml ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── SystemlessDebloater.cfg ├── changelog.md ├── customize.sh ├── module-alt.prop ├── module.prop ├── mountList.sh ├── service.sh ├── uninstall.sh ├── update-alt.json └── update.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://zgfg.github.io/PayPal.html"] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/README.md -------------------------------------------------------------------------------- /SystemlessDebloater.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/SystemlessDebloater.cfg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/changelog.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/customize.sh -------------------------------------------------------------------------------- /module-alt.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/module-alt.prop -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/module.prop -------------------------------------------------------------------------------- /mountList.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/mountList.sh -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/service.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/uninstall.sh -------------------------------------------------------------------------------- /update-alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/update-alt.json -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zgfg/SystemlessDebloater/HEAD/update.json --------------------------------------------------------------------------------