├── .gitattributes ├── .gitmodules ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── file_contexts_image ├── post-fs-data.sh ├── service.sh └── system.prop ├── config.sh ├── module.prop └── system ├── app └── AppSystemizer │ └── com.loserskater.appsystemizer.apk └── placeholder /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/.gitmodules -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/README.md -------------------------------------------------------------------------------- /common/file_contexts_image: -------------------------------------------------------------------------------- 1 | /magisk(/.*)? u:object_r:system_file:s0 2 | -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/common/system.prop -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/config.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/module.prop -------------------------------------------------------------------------------- /system/app/AppSystemizer/com.loserskater.appsystemizer.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stangri/AppSystemizer/HEAD/system/app/AppSystemizer/com.loserskater.appsystemizer.apk -------------------------------------------------------------------------------- /system/placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------