├── .gitattributes ├── .github ├── logo.png └── workflows │ └── sourceforge-upload.yml ├── .gitignore ├── .gitmodules ├── .pylintrc ├── KNOWN-BUGS.MD ├── LICENSE ├── README.md ├── __packages__.py ├── main.py ├── requirements.txt └── template ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── common ├── functions.sh └── install.sh ├── customize.sh ├── extra ├── aosp_replace_util.sh ├── overlap_detect_util.sh ├── package_list.txt └── systemless-gapps-state-observer.sh ├── module.prop ├── sepolicy.rule ├── service.sh ├── system.prop └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.github/workflows/sourceforge-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/.github/workflows/sourceforge-upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/.pylintrc -------------------------------------------------------------------------------- /KNOWN-BUGS.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/KNOWN-BUGS.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/README.md -------------------------------------------------------------------------------- /__packages__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/__packages__.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyaxmlparser==0.3.31 2 | termcolor==2.5.0 3 | -------------------------------------------------------------------------------- /template/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /template/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /template/common/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/common/functions.sh -------------------------------------------------------------------------------- /template/common/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/common/install.sh -------------------------------------------------------------------------------- /template/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/customize.sh -------------------------------------------------------------------------------- /template/extra/aosp_replace_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/extra/aosp_replace_util.sh -------------------------------------------------------------------------------- /template/extra/overlap_detect_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/extra/overlap_detect_util.sh -------------------------------------------------------------------------------- /template/extra/package_list.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/extra/systemless-gapps-state-observer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/extra/systemless-gapps-state-observer.sh -------------------------------------------------------------------------------- /template/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/module.prop -------------------------------------------------------------------------------- /template/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/sepolicy.rule -------------------------------------------------------------------------------- /template/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/service.sh -------------------------------------------------------------------------------- /template/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/system.prop -------------------------------------------------------------------------------- /template/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chickendrop89/systemless-gapps/HEAD/template/uninstall.sh --------------------------------------------------------------------------------