├── .gitattributes ├── 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 └── placeholder /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/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/oasisfeng/magisk-module-template/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/HEAD/common/system.prop -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/HEAD/config.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/HEAD/module.prop -------------------------------------------------------------------------------- /system/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oasisfeng/magisk-module-template/HEAD/system/placeholder --------------------------------------------------------------------------------