I have a phone “realme u1” with colour os 6 . I'm not able to uninstall few apps like oppo app market, game center, theme store when i tried it says [ internal_system_failure] so can we do somthing about those irritating apps ??Remove system apps on Realme UI using ADB
Updated : 10th October 2020
Tested Using:
- Realme X50 / X2 Series
- Realme 8 / 7 / 6 / 5 Series
- Realme C3 / C2
Notes:
- This method should not delete your phone data, however always take full backup of your phone for safety.
- This method uninstalls/disables the apps for user 0. It does not physically remove the apps from your system partition.
Requirements:
- Your Realme phone
- A Computer with Windows/Linux/MacOS
- Install ADB + Fastboot Drivers : https://www.xda-developers.com/install-adb-windows-macos-linux/
- Setup ADB + Fastboot Interface : https://www.xda-developers.com/adb-fastboot-any-directory-windows-linux/
- Important : Enable "Use USB to : File Transfer" from notification menu after connecting your phone to PC, else ADB will not work.
- For best results, directly copy paste the below commands inside the terminal.
Un-install a system app
Code:adb shell pm uninstall -k --user 0 <package.name.of.the.app>
List all system apps which you have un-installed
Code:adb shell "(pm list packages -u && pm list packages) | sort | uniq -u | cut -c 9-"
Re-install a system app
Code:adb shell cmd package install-existing <package.name.of.the.app>
Re-install all uninstalled apps at once on a Linux machine
Code:for i in $(adb shell "(pm list packages -u && pm list packages) | sort | uniq -u | cut -c 9-") ; do adb shell cmd package install-existing "$i" ; done
Disable a system app
Code:adb shell pm disable-user --user 0 <package.name.of.the.app>
List all system apps which you have disabled
Code:adb shell "pm list packages -d | cut -c 9-"
Re-enable a system app
Code:adb shell pm enable --user 0 <package.name.of.the.app>
Re-enable all disabled system apps at once on a Linux Machine
Code:for i in $(adb shell "(pm list packages -d | sort | cut -c 9-)") ; do adb shell pm enable --user 0 "$i" ; done
Code:# AOSP & Google Apps adb shell pm uninstall -k --user 0 com.android.chrome adb shell pm uninstall -k --user 0 com.android.hotwordenrollment.okgoogle adb shell pm uninstall -k --user 0 com.android.stk adb shell pm uninstall -k --user 0 com.google.android.apps.nbu.paisa.user adb shell pm uninstall -k --user 0 com.google.android.feedback adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox adb shell pm uninstall -k --user 0 com.google.android.youtube # ColorOS & Oppo Apps adb shell pm uninstall -k --user 0 com.coloros.assistantscreen adb shell pm uninstall -k --user 0 com.coloros.backuprestore adb shell pm uninstall -k --user 0 com.coloros.childrenspace adb shell pm uninstall -k --user 0 com.coloros.compass2 adb shell pm uninstall -k --user 0 com.coloros.healthcheck adb shell pm uninstall -k --user 0 com.coloros.healthservice adb shell pm uninstall -k --user 0 com.coloros.personalassistant.overlay.common adb shell pm uninstall -k --user 0 com.coloros.phonemanager adb shell pm uninstall -k --user 0 com.coloros.securepay adb shell pm uninstall -k --user 0 com.coloros.securitykeyboard adb shell pm uninstall -k --user 0 com.coloros.video adb shell pm uninstall -k --user 0 com.coloros.weather.service adb shell pm uninstall -k --user 0 com.coloros.weather2 adb shell pm uninstall -k --user 0 com.coloros.widget.smallweather adb shell pm uninstall -k --user 0 com.oppo.quicksearchbox adb shell pm uninstall -k --user 0 com.oppo.music # Facebook Apps adb shell pm uninstall -k --user 0 com.facebook.appmanager adb shell pm uninstall -k --user 0 com.facebook.services adb shell pm uninstall -k --user 0 com.facebook.system # Heytap Apps # You can remove all if you dont use Realme/Heytap online account adb shell pm disable-user --user 0 com.heytap.market adb shell pm disable-user --user 0 com.heytap.themestore adb shell pm uninstall -k --user 0 com.heytap.browser adb shell pm uninstall -k --user 0 com.heytap.cloud adb shell pm uninstall -k --user 0 com.heytap.habit.analysis adb shell pm uninstall -k --user 0 com.heytap.mcs adb shell pm uninstall -k --user 0 com.heytap.openid adb shell pm uninstall -k --user 0 com.heytap.pictorial adb shell pm uninstall -k --user 0 com.heytap.usercenter # Nearme & Realme Apps # Secure Payment Protection Feature adb shell pm uninstall -k --user 0 com.nearme.atlas adb shell pm uninstall -k --user 0 com.realme.securitycheck # Red Tea Mobile Apps # Get new SIM, recharge data plans when abroad. adb shell pm uninstall -k --user 0 com.redteamobile.roaming adb shell pm uninstall -k --user 0 com.redteamobile.roaming.deamon # Tencent Apps adb shell pm uninstall -k --user 0 com.tencent.soter.soterserver # !! Warning !! # Temporarily Blocks OTA Updates, For Advanced Users Only adb shell pm uninstall -k --user 0 com.coloros.sau adb shell pm uninstall -k --user 0 com.oppo.otaui adb shell pm uninstall -k --user 0 com.oppo.ota
Credits:
Doug Lynch of XDA Portal : https://www.xda-developers.com/author/doug-lynch/
Original Article : https://www.xda-developers.com/uninstall-carrier-oem-bloatware-without-root-access