1
0
Fork 0
This repository has been archived on 2025-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
WebViewChanger/uninstall.sh
2025-05-13 08:56:18 +00:00

19 lines
No EOL
322 B
Bash

MODDIR=${0%/*}
source $MODDIR/debloat.sh
# Wait for Boot Completed
waitUntilBootCompleted() {
resetprop -w sys.boot_completed 0 && return
while [[ $(getprop sys.boot_completed) -eq 0 ]]; do
sleep 10
done
}
# Uninstall Updates and Data of WebView
(
waitUntilBootCompleted
sleep 3
pm uninstall $WV1
pm uninstall $WV2
) &