├── .gitattributes ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── addon.d.sh ├── customize.sh ├── module.prop ├── post-fs-data.sh └── sepolicy.rule /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/README.md -------------------------------------------------------------------------------- /addon.d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/addon.d.sh -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/customize.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/module.prop -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujincheng08/Magisk-Addon/HEAD/post-fs-data.sh -------------------------------------------------------------------------------- /sepolicy.rule: -------------------------------------------------------------------------------- 1 | permissive update_engine 2 | --------------------------------------------------------------------------------