├── .gitattributes ├── .gitignore ├── License.md ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── MagicGApps.sh ├── README.md ├── module.prop └── service.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-25/systemless-gapps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | z 2 | *.zip 3 | .rsc 4 | -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-25/systemless-gapps/HEAD/License.md -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-25/systemless-gapps/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /MagicGApps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-25/systemless-gapps/HEAD/MagicGApps.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-25/systemless-gapps/HEAD/README.md -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-25/systemless-gapps/HEAD/module.prop -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VR-25/systemless-gapps/HEAD/service.sh --------------------------------------------------------------------------------