├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── files.txt ├── module ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script ├── QuickSwitch.apk ├── common │ ├── aapt2_arm64-v8a │ ├── aapt2_armeabi-v7a │ ├── aapt2_x86 │ └── aapt2_x86_64 ├── customize.sh ├── overlays │ ├── AndroidManifest.xml │ └── overlay │ │ └── values │ │ └── bools.xml ├── quickswitch ├── sepolicy.rule ├── service.sh ├── system.prop ├── system │ └── placeholder ├── uninstall.sh ├── zipsigner └── zipsigner-3.0-dexed.jar ├── release.sh ├── webui ├── CHANGELOG.md ├── module.prop ├── update.json └── webroot │ ├── index.html │ ├── modules │ ├── dashboard.js │ ├── exec.js │ ├── kernelsu.js │ ├── launchers.js │ ├── loader.js │ ├── navbar.js │ └── process.js │ ├── scripts │ └── genQuickstepList.sh │ └── style.css └── withoutui ├── CHANGELOG.md ├── module.prop └── update.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/README.md -------------------------------------------------------------------------------- /files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/files.txt -------------------------------------------------------------------------------- /module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /module/QuickSwitch.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/QuickSwitch.apk -------------------------------------------------------------------------------- /module/common/aapt2_arm64-v8a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/common/aapt2_arm64-v8a -------------------------------------------------------------------------------- /module/common/aapt2_armeabi-v7a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/common/aapt2_armeabi-v7a -------------------------------------------------------------------------------- /module/common/aapt2_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/common/aapt2_x86 -------------------------------------------------------------------------------- /module/common/aapt2_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/common/aapt2_x86_64 -------------------------------------------------------------------------------- /module/customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/customize.sh -------------------------------------------------------------------------------- /module/overlays/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/overlays/AndroidManifest.xml -------------------------------------------------------------------------------- /module/overlays/overlay/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/overlays/overlay/values/bools.xml -------------------------------------------------------------------------------- /module/quickswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/quickswitch -------------------------------------------------------------------------------- /module/sepolicy.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/sepolicy.rule -------------------------------------------------------------------------------- /module/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/service.sh -------------------------------------------------------------------------------- /module/system.prop: -------------------------------------------------------------------------------- 1 | ro.boot.vendor.overlay.static=false 2 | -------------------------------------------------------------------------------- /module/system/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/uninstall.sh: -------------------------------------------------------------------------------- 1 | ./$(dirname $0)/quickswitch --uninstall 2 | -------------------------------------------------------------------------------- /module/zipsigner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/zipsigner -------------------------------------------------------------------------------- /module/zipsigner-3.0-dexed.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/module/zipsigner-3.0-dexed.jar -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/release.sh -------------------------------------------------------------------------------- /webui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/CHANGELOG.md -------------------------------------------------------------------------------- /webui/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/module.prop -------------------------------------------------------------------------------- /webui/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/update.json -------------------------------------------------------------------------------- /webui/webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/index.html -------------------------------------------------------------------------------- /webui/webroot/modules/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/modules/dashboard.js -------------------------------------------------------------------------------- /webui/webroot/modules/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/modules/exec.js -------------------------------------------------------------------------------- /webui/webroot/modules/kernelsu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/modules/kernelsu.js -------------------------------------------------------------------------------- /webui/webroot/modules/launchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/modules/launchers.js -------------------------------------------------------------------------------- /webui/webroot/modules/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/modules/loader.js -------------------------------------------------------------------------------- /webui/webroot/modules/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/modules/navbar.js -------------------------------------------------------------------------------- /webui/webroot/modules/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/modules/process.js -------------------------------------------------------------------------------- /webui/webroot/scripts/genQuickstepList.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/scripts/genQuickstepList.sh -------------------------------------------------------------------------------- /webui/webroot/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/webui/webroot/style.css -------------------------------------------------------------------------------- /withoutui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/withoutui/CHANGELOG.md -------------------------------------------------------------------------------- /withoutui/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/withoutui/module.prop -------------------------------------------------------------------------------- /withoutui/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j7b3y/QuickSwitch/HEAD/withoutui/update.json --------------------------------------------------------------------------------