├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── greetings.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── SECURITY.md ├── common ├── addon │ └── Volume-Key-Selector │ │ ├── install.sh │ │ └── tools │ │ ├── arm │ │ └── keycheck │ │ └── x86 │ │ └── keycheck ├── functions.sh ├── install.sh ├── overlay10 │ ├── AndroidManifest.xml │ └── res │ │ └── xml │ │ └── config_webview_packages.xml ├── overlay9 │ ├── AndroidManifest.xml │ └── res │ │ └── xml │ │ └── config_webview_packages.xml └── tools │ └── tools.zip ├── config.txt ├── customize.sh ├── module.prop ├── post-fs-data.sh ├── service.sh ├── status.txt ├── system └── placeholder └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX 2 | .DS_Store 3 | /*.zip 4 | 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/SECURITY.md -------------------------------------------------------------------------------- /common/addon/Volume-Key-Selector/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/addon/Volume-Key-Selector/install.sh -------------------------------------------------------------------------------- /common/addon/Volume-Key-Selector/tools/arm/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/addon/Volume-Key-Selector/tools/arm/keycheck -------------------------------------------------------------------------------- /common/addon/Volume-Key-Selector/tools/x86/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/addon/Volume-Key-Selector/tools/x86/keycheck -------------------------------------------------------------------------------- /common/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/functions.sh -------------------------------------------------------------------------------- /common/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/install.sh -------------------------------------------------------------------------------- /common/overlay10/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/overlay10/AndroidManifest.xml -------------------------------------------------------------------------------- /common/overlay10/res/xml/config_webview_packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/overlay10/res/xml/config_webview_packages.xml -------------------------------------------------------------------------------- /common/overlay9/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/overlay9/AndroidManifest.xml -------------------------------------------------------------------------------- /common/overlay9/res/xml/config_webview_packages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/overlay9/res/xml/config_webview_packages.xml -------------------------------------------------------------------------------- /common/tools/tools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/common/tools/tools.zip -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/config.txt -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/customize.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/module.prop -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/post-fs-data.sh -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/service.sh -------------------------------------------------------------------------------- /status.txt: -------------------------------------------------------------------------------- 1 | # DO NOT EDIT THIS FILE, SERIOUSLY 2 | # Automatically updated by the installer -------------------------------------------------------------------------------- /system/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidacy-user/WebviewSwitcher/HEAD/uninstall.sh --------------------------------------------------------------------------------