├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── addon │ └── placeholder └── system.prop ├── install.sh ├── module.prop ├── system └── placeholder └── uninstall.sh /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeanxModulostk/DalvikHyperthreading/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeanxModulostk/DalvikHyperthreading/HEAD/README.md -------------------------------------------------------------------------------- /common/addon/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeanxModulostk/DalvikHyperthreading/HEAD/common/system.prop -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeanxModulostk/DalvikHyperthreading/HEAD/install.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeanxModulostk/DalvikHyperthreading/HEAD/module.prop -------------------------------------------------------------------------------- /system/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeanxModulostk/DalvikHyperthreading/HEAD/uninstall.sh --------------------------------------------------------------------------------