-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdebloat-realmeui.sh
More file actions
40 lines (37 loc) · 1.05 KB
/
debloat-realmeui.sh
File metadata and controls
40 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
# List of package names to uninstall
packagesToUninstall=(
com.android.email.partnerprovider
com.android.traceur
com.coloros.securepay
com.facebook.appmanager
com.facebook.services
com.facebook.system
com.glance.internet
com.google.android.apps.nbu.files
com.google.android.feedback
com.google.android.onetimeinitializer
com.google.android.partnersetup
com.google.android.printservice.recommendation
com.heytap.browser
com.heytap.cloud
com.heytap.market
com.heytap.mcs
com.heytap.pictorial
com.microsoft.appmanager
com.oplus.crashbox
com.oplus.lfeh
com.oplus.logkit
com.oplus.statistics.rom
com.oplus.wifibackuprestore
com.oppo.quicksearchbox
com.redteamobile.roaming
com.tencent.soter.soterserver
com.wapi.wapicertmanage
)
# Loop through the list and uninstall each package
for package in "${packagesToUninstall[@]}"; do
echo "Uninstalling package: $package"
adb shell pm uninstall -k --user 0 "$package"
done
echo "Uninstallation complete"