├── .gitattributes ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── keycheck ├── post-fs-data.sh ├── service.sh ├── system.prop └── util_funcs.sh ├── guide.md ├── install.sh ├── mods ├── empty │ ├── files │ │ └── placeholder │ └── mod_info.sh ├── example │ ├── files │ │ ├── post-fs-data.sh │ │ ├── service.sh │ │ ├── system │ │ │ └── app │ │ │ │ └── testapp │ │ │ │ └── testapp1.apk │ │ └── system1.prop │ └── mod_info.sh ├── perf_HawkNest │ ├── files │ │ ├── list_of_socs │ │ ├── platforms │ │ │ ├── helio_p10 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── helio_x10 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_410 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_650 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_660 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_810 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ └── sd_820 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ └── service.sh │ └── mod_info.sh ├── perf_PixelCat │ ├── files │ │ ├── list_of_socs │ │ ├── platforms │ │ │ ├── exynos_8895 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── exynos_9810 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_636 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_660 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_820 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ ├── sd_821 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ │ └── sd_835 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ └── service.sh │ └── mod_info.sh ├── perf_SkyMiPerf │ ├── files │ │ ├── list_of_socs │ │ ├── platforms │ │ │ └── sd_835 │ │ │ │ ├── perf_text │ │ │ │ └── powercfg │ │ └── service.sh │ └── mod_info.sh └── perf_xga2 │ ├── files │ ├── list_of_socs │ ├── platforms │ │ ├── exynos_7420 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── exynos_8890 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── exynos_8895 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── kirin_950 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_425 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_430 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_625 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_630 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_636 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_650 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_660 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ ├── sd_801 │ │ │ ├── perf_text │ │ │ └── powercfg │ │ └── sd_835 │ │ │ ├── perf_text │ │ │ └── powercfg │ └── service.sh │ └── mod_info.sh ├── module.prop └── system └── placeholder /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-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/cjybyjk/magisk-allinone-module-template/HEAD/README.md -------------------------------------------------------------------------------- /common/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/common/keycheck -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/common/post-fs-data.sh -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/common/service.sh -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/common/system.prop -------------------------------------------------------------------------------- /common/util_funcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/common/util_funcs.sh -------------------------------------------------------------------------------- /guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/guide.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/install.sh -------------------------------------------------------------------------------- /mods/empty/files/placeholder: -------------------------------------------------------------------------------- 1 | # 这个文件没有任何实际用途,只是为了保持文件夹结构而存在 -------------------------------------------------------------------------------- /mods/empty/mod_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/empty/mod_info.sh -------------------------------------------------------------------------------- /mods/example/files/post-fs-data.sh: -------------------------------------------------------------------------------- 1 | MODDIR="$1" 2 | -------------------------------------------------------------------------------- /mods/example/files/service.sh: -------------------------------------------------------------------------------- 1 | MODDIR="$1" 2 | -------------------------------------------------------------------------------- /mods/example/files/system/app/testapp/testapp1.apk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/example/files/system1.prop: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/example/mod_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/example/mod_info.sh -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/list_of_socs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/list_of_socs -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/helio_p10/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/helio_p10/perf_text -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/helio_p10/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/helio_p10/powercfg -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/helio_x10/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/helio_x10/perf_text -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/helio_x10/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/helio_x10/powercfg -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_410/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_410/perf_text -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_410/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_410/powercfg -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_650/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_650/perf_text -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_650/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_650/powercfg -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_660/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_660/perf_text -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_660/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_660/powercfg -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_810/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_810/perf_text -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_810/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_810/powercfg -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_820/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_820/perf_text -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/platforms/sd_820/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/platforms/sd_820/powercfg -------------------------------------------------------------------------------- /mods/perf_HawkNest/files/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/files/service.sh -------------------------------------------------------------------------------- /mods/perf_HawkNest/mod_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_HawkNest/mod_info.sh -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/list_of_socs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/list_of_socs -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/exynos_8895/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/exynos_8895/perf_text -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/exynos_8895/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/exynos_8895/powercfg -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/exynos_9810/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/exynos_9810/perf_text -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/exynos_9810/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/exynos_9810/powercfg -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_636/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_636/perf_text -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_636/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_636/powercfg -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_660/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_660/perf_text -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_660/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_660/powercfg -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_820/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_820/perf_text -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_820/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_820/powercfg -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_821/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_821/perf_text -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_821/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_821/powercfg -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_835/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_835/perf_text -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/platforms/sd_835/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/platforms/sd_835/powercfg -------------------------------------------------------------------------------- /mods/perf_PixelCat/files/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/files/service.sh -------------------------------------------------------------------------------- /mods/perf_PixelCat/mod_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_PixelCat/mod_info.sh -------------------------------------------------------------------------------- /mods/perf_SkyMiPerf/files/list_of_socs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_SkyMiPerf/files/list_of_socs -------------------------------------------------------------------------------- /mods/perf_SkyMiPerf/files/platforms/sd_835/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_SkyMiPerf/files/platforms/sd_835/perf_text -------------------------------------------------------------------------------- /mods/perf_SkyMiPerf/files/platforms/sd_835/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_SkyMiPerf/files/platforms/sd_835/powercfg -------------------------------------------------------------------------------- /mods/perf_SkyMiPerf/files/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_SkyMiPerf/files/service.sh -------------------------------------------------------------------------------- /mods/perf_SkyMiPerf/mod_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_SkyMiPerf/mod_info.sh -------------------------------------------------------------------------------- /mods/perf_xga2/files/list_of_socs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/list_of_socs -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/exynos_7420/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/exynos_7420/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/exynos_7420/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/exynos_7420/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/exynos_8890/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/exynos_8890/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/exynos_8890/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/exynos_8890/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/exynos_8895/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/exynos_8895/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/exynos_8895/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/exynos_8895/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/kirin_950/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/kirin_950/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/kirin_950/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/kirin_950/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_425/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_425/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_425/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_425/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_430/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_430/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_430/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_430/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_625/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_625/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_625/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_625/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_630/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_630/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_630/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_630/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_636/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_636/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_636/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_636/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_650/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_650/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_650/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_650/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_660/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_660/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_660/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_660/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_801/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_801/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_801/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_801/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_835/perf_text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_835/perf_text -------------------------------------------------------------------------------- /mods/perf_xga2/files/platforms/sd_835/powercfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/platforms/sd_835/powercfg -------------------------------------------------------------------------------- /mods/perf_xga2/files/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/files/service.sh -------------------------------------------------------------------------------- /mods/perf_xga2/mod_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/mods/perf_xga2/mod_info.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/module.prop -------------------------------------------------------------------------------- /system/placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjybyjk/magisk-allinone-module-template/HEAD/system/placeholder --------------------------------------------------------------------------------