├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── post-fs-data.sh ├── service.sh └── system.prop ├── install.sh ├── module.prop └── system ├── etc └── permissions │ └── privapp-permissions-com.catchingnow.iceboxsystemplugin.xml └── priv-app └── com.catchingnow.iceboxsystemplugin.apk /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/README.md -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/common/system.prop -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/install.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/module.prop -------------------------------------------------------------------------------- /system/etc/permissions/privapp-permissions-com.catchingnow.iceboxsystemplugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/system/etc/permissions/privapp-permissions-com.catchingnow.iceboxsystemplugin.xml -------------------------------------------------------------------------------- /system/priv-app/com.catchingnow.iceboxsystemplugin.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heruoxin/ice-box-speed-up-plugin/HEAD/system/priv-app/com.catchingnow.iceboxsystemplugin.apk --------------------------------------------------------------------------------