├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── ReduceMIUI.json ├── ReduceMIUI.md └── ReduceMIUI ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── customize.sh ├── dex2oat.prop ├── hosts.txt ├── module.prop ├── service.sh └── 包名精简.prop /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/README_en.md -------------------------------------------------------------------------------- /ReduceMIUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI.json -------------------------------------------------------------------------------- /ReduceMIUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI.md -------------------------------------------------------------------------------- /ReduceMIUI/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /ReduceMIUI/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /ReduceMIUI/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI/customize.sh -------------------------------------------------------------------------------- /ReduceMIUI/dex2oat.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI/dex2oat.prop -------------------------------------------------------------------------------- /ReduceMIUI/hosts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI/hosts.txt -------------------------------------------------------------------------------- /ReduceMIUI/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI/module.prop -------------------------------------------------------------------------------- /ReduceMIUI/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI/service.sh -------------------------------------------------------------------------------- /ReduceMIUI/包名精简.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zjw2017/ReduceMIUI/HEAD/ReduceMIUI/包名精简.prop --------------------------------------------------------------------------------