From 55f3975c5f792530c2f0b58ca4e1dda91ed4c658 Mon Sep 17 00:00:00 2001 From: Lordify Date: Mon, 17 Mar 2025 11:21:04 +0000 Subject: [PATCH] Update uninstall.sh --- uninstall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uninstall.sh b/uninstall.sh index f64a5b5..6d42cbd 100644 --- a/uninstall.sh +++ b/uninstall.sh @@ -1,4 +1,4 @@ -WVAD=$(for WVA in ".com.android.webview" ".us.spotco.mulch_wv" ".com.thorium.webview" ".app.vanadium.trichromelibrary" ".app.vanadium.webview"; do ls -R /data/app/ | grep -E -m 1 "$WVA"; done) +WVAD=$(for WVA in ".com.android.webview" ".org.axpos.aosmium_wv" ".app.vanadium.trichromelibrary" ".app.vanadium.webview"; do ls -R /data/app/ | grep -E -m 1 "$WVA"; done) # Delete WebView User Data if [[ ! -d $WVAD ]]; then @@ -6,7 +6,7 @@ if [[ ! -d $WVAD ]]; then fi # Delete WebView User Data -for WVD in "com.android.webview" "us.spotco.mulch_wv" "com.thorium.webview" "app.vanadium.trichromelibrary" "app.vanadium.webview"; do +for WVD in "com.android.webview" "org.axpos.aosmium_wv" "app.vanadium.trichromelibrary" "app.vanadium.webview"; do if [ -d "/data/data/$WVD" ]; then rm -rf /data/data/$WVD fi