├── .github ├── FUNDING.yml ├── renovate.json5 └── workflows │ └── release.yml ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── changelog.md ├── customize.sh ├── hosts ├── module.json └── module.prop /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/.gitignore -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/changelog.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/customize.sh -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/hosts -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/module.json -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goooler/systemless-fcm-hosts/HEAD/module.prop --------------------------------------------------------------------------------