├── .gitattributes ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── settings.json ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── customize.sh ├── extreme_gt ├── d1x00 │ ├── power_app_cfg.xml │ ├── powercontable.xml │ ├── powerscntbl.xml │ ├── service.sh │ └── tp │ │ ├── ht120.mtc │ │ ├── thermal.conf │ │ ├── thermal.off.conf │ │ └── thermal_policy_08 ├── module.prop ├── post-fs-data.sh ├── service.sh └── uninstall.sh ├── module.prop └── system └── vendor └── etc └── placeholder /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/customize.sh -------------------------------------------------------------------------------- /extreme_gt/d1x00/power_app_cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/power_app_cfg.xml -------------------------------------------------------------------------------- /extreme_gt/d1x00/powercontable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/powercontable.xml -------------------------------------------------------------------------------- /extreme_gt/d1x00/powerscntbl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/powerscntbl.xml -------------------------------------------------------------------------------- /extreme_gt/d1x00/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/service.sh -------------------------------------------------------------------------------- /extreme_gt/d1x00/tp/ht120.mtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/tp/ht120.mtc -------------------------------------------------------------------------------- /extreme_gt/d1x00/tp/thermal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/tp/thermal.conf -------------------------------------------------------------------------------- /extreme_gt/d1x00/tp/thermal.off.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/tp/thermal.off.conf -------------------------------------------------------------------------------- /extreme_gt/d1x00/tp/thermal_policy_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/d1x00/tp/thermal_policy_08 -------------------------------------------------------------------------------- /extreme_gt/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/module.prop -------------------------------------------------------------------------------- /extreme_gt/post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/post-fs-data.sh -------------------------------------------------------------------------------- /extreme_gt/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/service.sh -------------------------------------------------------------------------------- /extreme_gt/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/extreme_gt/uninstall.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirulAndalib/Scene7_ExtremeGT/HEAD/module.prop -------------------------------------------------------------------------------- /system/vendor/etc/placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------