⋆ [2022-09-28] Remove system apps on Realme UI 2.0 using ADB ⋆ - Realme 6 Guides, News, & Discussion

Remove system apps on Realme UI 2.0 using ADB
Updated : 2022-09-28​
Tested On:
Model: RMX2001
Hardware Version: RMX_2001_11​
RealmeUI Version: V2.0
ColorOS Version: V11​
Android Version: 11
Android Security Update: 2022-03-05
Build Number: RMX2001_11_C.18​
Baseband Version: M_V3_P10,M_V3_P10​
Kernel Version: 4.14.186+​
Notes:
DO NOT INSTALL OTA UPDATE ON A DEBLOATED PHONE. YOU WILL FACE BOOT LOOPS.
RE-INSTALL / RE-ENABLE BLOATWARE APPS, RESTART PHONE AND THEN INSTALL OTA UPDATE.
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 phone
A computer with Windows/Linux/MacOS
Enable "Use USB to : File Transfer" from notification menu after connecting your phone to PC, else ADB will not work.
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
Un-install a system app
Code:
adb shell pm uninstall -k --user 0 <package.name>
List all system apps which you have un-installed
Code:
adb shell "(pm list packages -u && pm list packages) | sed 's/^package://' | sort | uniq -u"
Re-install a system app
Code:
adb shell cmd package install-existing <package.name>
Re-install all uninstalled apps at once on a Linux machine
Code:
for i in $(adb shell "(pm list packages -u && pm list packages) | sed 's/^package://' | sort | uniq -u"); do adb shell "cmd package install-existing ${i}"; done
Disable a system app
Code:
adb shell pm disable-user --user 0 <package.name>
List all system apps which you have disabled
Code:
adb shell "pm list packages -d | sed 's/^package://' | sort | uniq -u"
Re-enable a system app
Code:
adb shell pm enable --user 0 <package.name>
Re-enable all disabled system apps at once on a Linux Machine
Code:
for i in $(adb shell "pm list packages -d | sed 's/^package://' | sort | uniq -u"); 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.weather2
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 uninstall -k --user 0 com.heytap.market
adb shell pm uninstall -k --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
# Tencent Apps
adb shell pm uninstall -k --user 0 com.tencent.soter.soterserver
# Misc Apps
adb shell pm uninstall -k --user 0 com.glance.internet
adb shell pm uninstall -k --user 0 com.finshell.fin
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

Changelog
#1 : 15 June 2020
Initial Release
#2 : 20 June 2020
Added more AOSP, Google, MediaTek apps
#3 : 11 September 2020
Removed critical apps from the list
Remade the list for B45 update.
#4 : 15 September 2020
Added system app - com.heytap.mcs
#5 : 17 September 2020
Removed critical system app - com.coloros.safecenter
Removed critical system app - com.coloros.encryption
Removed system-locked app - com.coloros.lockassistant
#6 : 26 September 2020
Added new info
Added more devices apart from Realme 6
#7 : 10 October 2020
Added "pm disable-user --user 0" method
#8 : 12 May 2021
Remade the list, removed apps that were causing issues.
Added commands for batch re-installing and re-enabling apps of apps
#9 : 13 May 2021
Added more apps
#10 : 1 October 2021
Removed critical system app - com.coloros.weather2
Removed critical system app - com.coloros.weather.service
Guide is only applicable to Realme 6 (Realme UI 2.0, Android 11)
#11: 28 September 2022
Added OTA bootloop warning
Fixed adb commands
Added testing device information for transparency
#12 : 26 February 2023
Replaced com.coloros.weather.service with com.coloros.weather2
Added Finshell Pay and Glance apps

Reserved #2

Savior ????

thx

Remove hot apps and hot games
After the newest update of Jul, I have got two new icons/folder that tries to list entries from app market. Any way to remove those?
I might have remove those before using the mentioned approach but dont remember which packages were they.

udfaq8888 said:
After the newest update of Jul, I have got two new icons/folder that tries to list entries from app market. Any way to remove those? I might have remove those before using the mentioned approach but dont remember which packages were they.
Click to expand...
Click to collapse
Those are launcher activities from App Market App. Open App Market > Settings > Hot Games/Apps > Disable. It should now be hidden inside your stock launcher. They might re-appear again. Best way is to use a custom launcher and hide Hot App/Games permanently.

Can I remove all this packages? Is it safe?

Shirswa said:
Can I remove all this packages? Is it safe?
Click to expand...
Click to collapse
Yes, you can remove but be aware before removing any essential package required for proper device functioning.

Shirswa said:
Can I remove all this packages? Is it safe?
Click to expand...
Click to collapse
Technically its safe to remove all packages, I tested it personally and my phone was able to boot. If you dont need a particular app or functionality, you can safely remove that package.

the app security check drove me crazy, thanks for adding it!
too bad still now way to remove App Market. Can disable everything from the settings within the app and disable permissions

hi im using realme 6 pro is this applicable? using automatic? all listed there?

davejimson said:
hi im using realme 6 pro is this applicable? using automatic? all listed there?
Click to expand...
Click to collapse
yes you can use it on Realme 6 Pro too. I would recommend manual method instead.

prathameshsd said:
yes you can use it on Realme 6 Pro too. I would recommend manual method instead.
Click to expand...
Click to collapse
Thanks, anyway i can't understand the steps how to to automatic, i tried copying the code and save it as .bat , i clicked it run like blink only, nothing happens

davejimson said:
Thanks, anyway i can't understand the steps how to to automatic, i tried copying the code and save it as .bat , i clicked it run like blink only, nothing happens
Click to expand...
Click to collapse
make sure you have
installed adb drivers properly
added adb directory to system PATH variable
device gets detected in adb
set USB mode to file transfer
pasted the .bat file inside adb directory
if running bat file fails, go for manual method.

Removing com.coloros.encryption breaks the stock launcher.
Also trying to remove com.coloros.lockassistant returns "Failure [DELETE_FAILED_INTERNAL_ERROR]".
Everything else works fine :good:

Dont remove com.coloros.safecenter ! It breaks "display over other apps" permission!

wenna.speedy said:
Dont remove com.coloros.safecenter ! It breaks "display over other apps" permission!
Click to expand...
Click to collapse
zahid ramirez said:
Removing com.coloros.encryption breaks the stock launcher.
Also trying to remove com.coloros.lockassistant returns "Failure [DELETE_FAILED_INTERNAL_ERROR]".
Everything else works fine :good:
Click to expand...
Click to collapse
thanks for the heads up, I have updated the post.

Hello guys.
I uninstalled a lot of bloat from my realme 6i, but I accidentally deleted the phone and contacts app! And I don't know how they are called. Can anybody help me here? Just the stock android phone app would do. Thank you.

erw23 said:
Hello guys.
I uninstalled a lot of bloat from my realme 6i, but I accidentally deleted the phone and contacts app! And I don't know how they are called. Can anybody help me here? Just the stock android phone app would do. Thank you.
Click to expand...
Click to collapse
Phone app : adb shell cmd package install-existing com.android.phone
Contacts app : adb shell cmd package install-existing com.android.contacts
Messages app : adb shell cmd package install-existing com.androidm.mms
Also
adb shell "(pm list packages -u && pm list packages) | sort | uniq -u | cut -c 9-"
for all packages you have uninstalled.

Related

Debloat System Apps Without Root

This Guide Assumes You Know How To Use ADB, And Already Have Access To It. You Can Possibly Mess Up Your Phone Disabling The Wrong Thing, And I'm Not Liable For Any Damage, Including Missing Your Anniversary Dinner Due To Alarm App Being Disabled =P.
Plus Side? A Factory Reset Will Fix It.
Step One :
Download Android Platform Tools (ADB/Fastboot)
https://ln.sync.com/dl/984ab7480/azzmqpk8-8km5ysir-6fz7v9rz-mvfu2tqf
Step Two :
Enable USB Debugging
--Settings, About Phone, Tap Build Number 5 Times,
Go To "Developer Options", And Enable USB Debugging.
Step Three :
Download Application Inspector
https://play.google.com/store/apps/details?id=com.ubqsoft.sec01&hl=en
Step Four :
Extract The ZIP File From Step One. Open
The Directory, Hold Down Shift, Right Click, And Click
"Open Command Prompt Here".
Step Five:
Unlock Your Phone And Plug In Into Your PC, Then Type
"adb devices" (without quotes) Into The Command Prompt.
On Your Phone, Check "Always Allow" On Your Phone, And
Then Okay.
Step Six : type "adb shell" (without quotes)
---------------------------------
Here's Where The Debloating Begins.
---------------------------------
Once you type adb shell, you'll start using commands to
disable apps "permanantly". Instead of disabling them, and
them coming back when you do play store updates. This
has worked with anything i've thrown at it so far. Using
application inspector (linked above), to get the package
name, you'll then type in the command below to "remove"
that package from the current user. when done, reboot.
"pm uninstall -k --user 0 PACKAGE_NAME"
------------------------------------------
original thread with this method from the G5 Plus
forums. linked below. i didn't come up with this method,
but it works well on our phones. pics coming when i get
home, to help others out. i'll probably rewrite this to make
it cleaner as well
https://forum.xda-developers.com/g5-plus/how-to/amazon-ads-removal-moto-g5-t3598515
no luck. I need to disable voicemail, carrierhub, callerID but it gaves me en error "Failure"
I am rooted Stock Android 8.0 Sprint
and this actually worked for me
Make sure you have Root, I can not guarantee it works without it.
1st) VERY important) Make sure to activate the phone and let Sprint install all the garbage bloatware all the way, it can take a good half an hour
Make sure your wifi calling and all your sprint stuff works and your phone is fully activated otherwise you will end up with SPRINT ID download error 400 and the only way to get rid of that is with FACTORY RESET.
2) use a batch uninstaller app and remove all the garbage users app in one shot , close to 18 of them
Restart and follow the above
USB Debug enabled
ADB Shell
and copy paste the following lines from my list below
reboot and done,
Sprint ID did not reinstall the bloatware again.
be careful it is case sensetive!
=======================
nash:/ $ pm uninstall -k --user 0 com.facebook.katana
Success
nash:/ $ pm uninstall -k --user 0 com.lookout
Success
nash:/ $ pm uninstall -k --user 0 com.facebook.orca
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.clouddrive.photos
Success
nash:/ $ pm uninstall -k --user 0 com.instagram.android
Success
nash:/ $ pm uninstall -k --user 0 com.audible.application
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.mp3
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.kindle
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.mShop.android.shopping
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.avod.thirdpartyclient
Success
nash:/ $ pm uninstall -k --user 0 com.google.android.calendar
Success
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.google.android.marvin.talkback
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.inputmethod.pinyin
pm uninstall -k --user 0 com.google.android.inputmethod.japanese
pm uninstall -k --user 0 com.google.android.inputmethod.korean
pm uninstall -k --user 0 com.google.android.apps.tachyon
pm uninstall -k --user 0 com.google.android.apps.walletnfcrel
pm uninstall -k --user 0 com.google.vr.vrcore
doctorman said:
I am rooted Stock Android 8.0 Sprint
and this actually worked for me
Make sure you have Root, I can not guarantee it works without it.
1st) VERY important) Make sure to activate the phone and let Sprint install all the garbage bloatware all the way, it can take a good half an hour
Make sure your wifi calling and all your sprint stuff works and your phone is fully activated otherwise you will end up with SPRINT ID download error 400 and the only way to get rid of that is with FACTORY RESET.
2) use a batch uninstaller app and remove all the garbage users app in one shot , close to 18 of them
Restart and follow the above
USB Debug enabled
ADB Shell
and copy paste the following lines from my list below
reboot and done,
Sprint ID did not reinstall the bloatware again.
be careful it is case sensetive!
=======================
nash:/ $ pm uninstall -k --user 0 com.facebook.katana
Success
nash:/ $ pm uninstall -k --user 0 com.lookout
Success
nash:/ $ pm uninstall -k --user 0 com.facebook.orca
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.clouddrive.photos
Success
nash:/ $ pm uninstall -k --user 0 com.instagram.android
Success
nash:/ $ pm uninstall -k --user 0 com.audible.application
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.mp3
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.kindle
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.mShop.android.shopping
Success
nash:/ $ pm uninstall -k --user 0 com.amazon.avod.thirdpartyclient
Success
nash:/ $ pm uninstall -k --user 0 com.google.android.calendar
Success
Click to expand...
Click to collapse
This worked great. Planning on removing bloat as the days go on.
Can anyone please confirm if this works on unrooted stock firmware?. I am unable to make whatsapp calls because Sprinthub keeps terminating it.
Please if anyone has better idea of debloating Sprint crap, then let me know.
thanks
I have a XT1789-06 (Indian) and i use this method to debloat my Moto Phones (Moto Z , Moto Z2 Force , Moto Z Play) all running on stock and locked BL. This works quite well to uninstall apps (such as Moto Voice , Motorola SLPC System , Checkin , Device Management etc.. )
It doesn't have any carrier specific app , but it should succeed .

[GUIDE] [DEBLOAT] Remove stock apps WITHOUT ROOT

Asus Zenfone has stock android without bloatware .. why this thread is created ??
Agreed that we have near stock android and most of the apps can be disabled in settings.
But with the method mentioned below, app will never wake up to consume battery and will be uninstalled for current user.
Also ADB is way faster than individually selecting and disabling apps.​
You need to enable USB debugging and have ADB setup. (Refer https://www.xda-developers.com/quickly-install-adb/ is you are new to these things.)
Now once you have device connected via USB, run adb devices command to see if your device is connected via ADB.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Now copy and run the commands from below list for the app which you want to remove.
This will remove apps for current user and will return in case of factory reset. So if you mess something up, do factory reset to get out of trouble.
adb shell pm uninstall -k --user 0 com.asus.soundrecorder # Sound Recorder
adb shell pm uninstall -k --user 0 com.caf.fmradio # FM radio
adb shell pm uninstall -k --user 0 com.huaqin.FM # FM radio
adb shell pm uninstall -k --user 0 com.facebook.appmanager # Facebook App Manager
adb shell pm uninstall -k --user 0 com.facebook.katana # Facebook App
adb shell pm uninstall -k --user 0 com.facebook.orca # Facebook Messenger
adb shell pm uninstall -k --user 0 com.facebook.system # Facebook App Installer
adb shell pm uninstall -k --user 0 com.generalmobi.go2pay # Go2Pay
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Drive
adb shell pm uninstall -k --user 0 com.google.android.apps.maps # Google Map
adb shell pm uninstall -k --user 0 com.google.android.apps.messaging # Google Messaging
adb shell pm uninstall -k --user 0 com.google.android.apps.photos # Google Photos
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.calendar # Google Calendar
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox # Google Search App
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Google Movies
adb shell pm uninstall -k --user 0 com.google.android.webview # AOSP webview
adb shell pm uninstall -k --user 0 com.instagram.android # Instagram
adb shell pm uninstall -k --user 0 com.asus.ia.asusapp # Asus Service Center Added with update 305
Added below as per user requests :
adb shell pm uninstall -k --user 0 com.google.android.keep # Google Keep
adb shell pm uninstall -k --user 0 com.google.android.youtube # YouTube
adb shell pm uninstall -k --user 0 id.co.babe # BaBe - Baca Berita
adb shell pm uninstall -k --user 0 com.asus.calculator # Asus Calculator
adb shell pm uninstall -k --user 0 com.pure.indosat.care # myIM3 Added with update 331
adb shell pm uninstall -k --user 0 com.shopee.id # ShopeeOnline shopping app in ZB602KL
adb shell pm uninstall -k --user 0 com.android.dreams.basic # Basic Wallpaper Live Wallpaper
adb shell pm uninstall -k --user 0 com.google.android.tts # Google Text To Speech
adb shell pm uninstall -k --user 0 com.android.dreams.phototable # PhotoTable Wallpaper
adb shell pm uninstall -k --user 0 com.android.stk # Sim Tool Kit
adb shell pm uninstall -k --user 0 com.google.android.marvin.talkback # Talkback Service
adb shell pm uninstall -k --user 0 com.google.android.ims # Carrier Services ​
My Setup for Android 10 -->
adb shell pm uninstall --user 0 com.android.chrome
adb shell pm uninstall --user 0 com.android.dreams.basic
adb shell pm uninstall --user 0 com.android.dreams.phototable
adb shell pm uninstall --user 0 com.android.stk
adb shell pm uninstall --user 0 com.android.wallpaper.livepicker
adb shell pm uninstall --user 0 com.android.wallpaperbackup
adb shell pm uninstall --user 0 com.asus.calculator
adb shell pm uninstall --user 0 com.asus.ia.asusapp
adb shell pm uninstall --user 0 com.asus.soundrecorder
adb shell pm uninstall --user 0 com.caf.fmradio
adb shell pm uninstall --user 0 com.facebook.appmanager
adb shell pm uninstall --user 0 com.facebook.katana
adb shell pm uninstall --user 0 com.facebook.orca
adb shell pm uninstall --user 0 com.facebook.services
adb shell pm uninstall --user 0 com.facebook.system
adb shell pm uninstall --user 0 com.google.android.apps.docs
adb shell pm uninstall --user 0 com.google.android.apps.docs.oem
adb shell pm uninstall --user 0 com.google.android.apps.magazines
adb shell pm uninstall --user 0 com.google.android.apps.maps
adb shell pm uninstall --user 0 com.google.android.apps.messaging
adb shell pm uninstall --user 0 com.google.android.apps.nbu.files
adb shell pm uninstall --user 0 com.google.android.apps.photos
adb shell pm uninstall --user 0 com.google.android.apps.tachyon
adb shell pm uninstall --user 0 com.google.android.apps.walletnfcrel
adb shell pm uninstall --user 0 com.google.android.apps.wellbeing
adb shell pm uninstall --user 0 com.google.android.calendar
adb shell pm uninstall --user 0 com.google.android.contacts
adb shell pm uninstall --user 0 com.google.android.deskclock
adb shell pm uninstall --user 0 com.google.android.dialer
adb shell pm uninstall --user 0 com.google.android.gm
adb shell pm uninstall --user 0 com.google.android.googlequicksearchbox
adb shell pm uninstall --user 0 com.google.android.ims
adb shell pm uninstall --user 0 com.google.android.inputmethod.latin
adb shell pm uninstall --user 0 com.google.android.marvin.talkback
adb shell pm uninstall --user 0 com.google.android.music
adb shell pm uninstall --user 0 com.google.android.projection.gearhead
adb shell pm uninstall --user 0 com.google.android.tts
adb shell pm uninstall --user 0 com.google.android.videos
adb shell pm uninstall --user 0 com.google.android.webview
adb shell pm uninstall --user 0 com.google.android.youtube
adb shell pm uninstall --user 0 com.huaqin.FM
adb shell pm uninstall --user 0 com.instagram.android
Click to expand...
Click to collapse
.A.V.i.n.a.S.h. said:
Asus Zenfone has stock android without bloatware .. why this thread is created ??
Agreed that we have near stock android and most of the apps can be disabled in settings.
But with the method mentioned below, app will never wake up to consume battery and will be uninstalled for current user.
Also ADB is way faster that individually selecting and disabling apps.
You need to enable USB debugging and have ADB setup. (Refer https://www.xda-developers.com/quickly-install-adb/ is you are new to these things.)
Now once you have device connected via USB, run adb devices command to see if your device is connected via ADB.
Now copy and run the commands from below list for the app which you want to remove.
This will remove apps for current user and will return in case of factory reset. So if you mess something up, do factory reset to get out of trouble.
adb shell pm uninstall -k --user 0 com.android.launcher3 # Launcher -- Remove if you have third party launcher like Nova setup as default
adb shell pm uninstall -k --user 0 com.asus.soundrecorder # Sound Recorder
adb shell pm uninstall -k --user 0 com.caf.fmradio # FM radio
adb shell pm uninstall -k --user 0 com.facebook.appmanager # Facebook
adb shell pm uninstall -k --user 0 com.facebook.katana # Facebook
adb shell pm uninstall -k --user 0 com.facebook.orca # Facebook
adb shell pm uninstall -k --user 0 com.facebook.system # Facebook
adb shell pm uninstall -k --user 0 com.generalmobi.go2pay # Go2Pay
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Drive
adb shell pm uninstall -k --user 0 com.google.android.apps.maps # Google Map
adb shell pm uninstall -k --user 0 com.google.android.apps.messaging # Google Messaging
adb shell pm uninstall -k --user 0 com.google.android.apps.photos # Google Photos
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.calendar # Google Calendar
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox # Google Search App
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Google Movies
adb shell pm uninstall -k --user 0 com.google.android.webview # AOSP webview
adb shell pm uninstall -k --user 0 com.instagram.android # Instagram
Click to expand...
Click to collapse
I am using all your commands except for...
Removing sound recorder
Removing FM radio
Removing webview.
Thanks
One more firmware and one more bloatware ..
Updated OP to get rid of Asus Service Center app.
adb shell pm uninstall -k --user 0 com.asus.ia.asusapp # Asus Service Center Added with update 305
Will OTA succeed after removing any of these apps.
singhyar said:
Will OTA succeed after removing any of these apps.
Click to expand...
Click to collapse
No issues in OTA, this is basically removing apps for current user.
We are not tampering the system in any way
.A.V.i.n.a.S.h. said:
Asus Zenfone has stock android without bloatware .. why this thread is created ??
Agreed that we have near stock android and most of the apps can be disabled in settings.
But with the method mentioned below, app will never wake up to consume battery and will be uninstalled for current user.
Also ADB is way faster that individually selecting and disabling apps.
You need to enable USB debugging and have ADB setup. (Refer https://www.xda-developers.com/quickly-install-adb/ is you are new to these things.)
Now once you have device connected via USB, run adb devices command to see if your device is connected via ADB.
Now copy and run the commands from below list for the app which you want to remove.
This will remove apps for current user and will return in case of factory reset. So if you mess something up, do factory reset to get out of trouble.
adb shell pm uninstall -k --user 0 com.android.launcher3 # Launcher -- Remove if you have third party launcher like Nova setup as default
adb shell pm uninstall -k --user 0 com.asus.soundrecorder # Sound Recorder
adb shell pm uninstall -k --user 0 com.caf.fmradio # FM radio
adb shell pm uninstall -k --user 0 com.facebook.appmanager # Facebook
adb shell pm uninstall -k --user 0 com.facebook.katana # Facebook
adb shell pm uninstall -k --user 0 com.facebook.orca # Facebook
adb shell pm uninstall -k --user 0 com.facebook.system # Facebook
adb shell pm uninstall -k --user 0 com.generalmobi.go2pay # Go2Pay
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Drive
adb shell pm uninstall -k --user 0 com.google.android.apps.maps # Google Map
adb shell pm uninstall -k --user 0 com.google.android.apps.messaging # Google Messaging
adb shell pm uninstall -k --user 0 com.google.android.apps.photos # Google Photos
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.calendar # Google Calendar
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox # Google Search App
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Google Movies
adb shell pm uninstall -k --user 0 com.google.android.webview # AOSP webview
adb shell pm uninstall -k --user 0 com.instagram.android # Instagram
adb shell pm uninstall -k --user 0 com.asus.ia.asusapp # Asus Service Center Added with update 305
Click to expand...
Click to collapse
Can you please tell me why there are 4 different codes for Facebook? What each one exactly does? Also do we need to reboot the phone to see the changes?
SumitGupta2442 said:
Can you please tell me why there are 4 different codes for Facebook? What each one exactly does? Also do we need to reboot the phone to see the changes?
Click to expand...
Click to collapse
No reboot needed. You can see the changes in drawer & under All apps.
Facebook app description is added in OP.
You have main Facebook app, fb messenger, app manager and app installer.
The manager and installer is just companion apps to update facebook app .. read more here.
Worked perfectly, removed facebook, instagram, play movies, duo and go to pay.
Thanks OP,
Btw, can we enable Camera2 API (persist.camera.HAL3.enabled=1) with any adb command like this?
Want to install Gcam Without Root.
Thanks & Best Regard
sampit76 said:
Thanks OP,
Btw, can we enable Camera2 API (persist.camera.HAL3.enabled=1) with any adb command like this?
Want to install Gcam Without Root.
Thanks & Best Regard
Click to expand...
Click to collapse
No Sadly that is not possible with just ADB.
I removed the Google Search App but the search stays there with no action rest all looks good.
dinjo_jo said:
I removed the Google Search App but the search stays there with no action rest all looks good.
Click to expand...
Click to collapse
Change launcher to one where you can have a home screen without a search widget....
Any ways to reinstall?
dinjo_jo said:
Any ways to reinstall?
Click to expand...
Click to collapse
Go to play store and install
dinjo_jo said:
Any ways to reinstall?[/QUOTE Remember that it'll be again installed as system app.
Click to expand...
Click to collapse
.A.V.i.n.a.S.h. said:
Asus Zenfone has stock android without bloatware .. why this thread is created ??
Agreed that we have near stock android and most of the apps can be disabled in settings.
But with the method mentioned below, app will never wake up to consume battery and will be uninstalled for current user.
Also ADB is way faster that individually selecting and disabling apps.​
You need to enable USB debugging and have ADB setup. (Refer https://www.xda-developers.com/quickly-install-adb/ is you are new to these things.)
Now once you have device connected via USB, run adb devices command to see if your device is connected via ADB.
Now copy and run the commands from below list for the app which you want to remove.
This will remove apps for current user and will return in case of factory reset. So if you mess something up, do factory reset to get out of trouble.
adb shell pm uninstall -k --user 0 com.android.launcher3 # Launcher -- Remove if you have third party launcher like Nova setup as default
adb shell pm uninstall -k --user 0 com.asus.soundrecorder # Sound Recorder
adb shell pm uninstall -k --user 0 com.caf.fmradio # FM radio
adb shell pm uninstall -k --user 0 com.facebook.appmanager # Facebook App Manager
adb shell pm uninstall -k --user 0 com.facebook.katana # Facebook App
adb shell pm uninstall -k --user 0 com.facebook.orca # Facebook Messenger
adb shell pm uninstall -k --user 0 com.facebook.system # Facebook App Installer
adb shell pm uninstall -k --user 0 com.generalmobi.go2pay # Go2Pay
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Drive
adb shell pm uninstall -k --user 0 com.google.android.apps.maps # Google Map
adb shell pm uninstall -k --user 0 com.google.android.apps.messaging # Google Messaging
adb shell pm uninstall -k --user 0 com.google.android.apps.photos # Google Photos
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.calendar # Google Calendar
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox # Google Search App
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Google Movies
adb shell pm uninstall -k --user 0 com.google.android.webview # AOSP webview
adb shell pm uninstall -k --user 0 com.instagram.android # Instagram
adb shell pm uninstall -k --user 0 com.asus.ia.asusapp # Asus Service Center Added with update 305​
Click to expand...
Click to collapse
anyone knows command for debloat:
BaBe
Sheets
Slides
Keep
Thanks before
==============
Im using MaxPro M1 for Indonesian Region
goezthedoctor said:
anyone knows command for debloat:
BaBe
Sheets
Slides
Keep
Thanks before
==============
Im using MaxPro M1 for Indonesian Region
Click to expand...
Click to collapse
adb shell pm uninstall -k --user 0 com.google.android.apps.docs.editors.sheets # Google Sheets ( Not a system app in INDIAN version so try uninstall once without the -k --user 0)
adb shell pm uninstall -k --user 0 com.google.android.apps.docs.editors.slides # Google Slides ( Not a system app in INDIAN version so try uninstall once without the -k --user 0)
adb shell pm uninstall -k --user 0 com.google.android.keep #Google Keep
The first app you mentoned is not known to me.
Can you share Play Store link , I will share the UNINSTALL command
.A.V.i.n.a.S.h. said:
adb shell pm uninstall -k --user 0 com.google.android.apps.docs.editors.sheets # Google Sheets ( Not a system app in INDIAN version so try uninstall once without the -k --user 0)
adb shell pm uninstall -k --user 0 com.google.android.apps.docs.editors.slides # Google Slides ( Not a system app in INDIAN version so try uninstall once without the -k --user 0)
adb shell pm uninstall -k --user 0 com.google.android.keep #Google Keep
The first app you mentoned is not known to me.
Can you share Play Store link , I will share the UNINSTALL command
Click to expand...
Click to collapse
Thanks a lot
Here the link for BaBe:
https://www.google.co.id/url?sa=t&s...sQ5YQBCCcwAA&usg=AOvVaw126lJFqJTUAlHdsOf2aQk6
goezthedoctor said:
Thanks a lot
Here the link for BaBe:
https://www.google.co.id/url?sa=t&s...sQ5YQBCCcwAA&usg=AOvVaw126lJFqJTUAlHdsOf2aQk6
Click to expand...
Click to collapse
Here you go .. Hopefully it works but the package name is kind of unusual.
adb shell pm uninstall -k --user 0 id.co.babe #BaBe - Baca Berita
Give it a go.
If the command fails then no alteration to system so we are safe to give it a try.
how to uninstall chrome and youtube? i dont see the command in the list..
thanks..

[GUIDE] DISABLE Redmi NOTE 7 Bloatware (NO ROOT NEED no need for unlocked bootloader)

These are quick instructions on how to disable some of the Redmi NOTE 7 and Redmi Note 7 Pro Bloatware. Root is NOT NEEDED and a UNLOCKED bootloader is NOT NEEDED to accomplish this. If there are anymore packages that are safe to disable that need to be added to the list just post a reply on this thread and i will add it to the list
Please keep this strictly REDMI NOTE 7 and REDMI NOTE 7 Pro orientated only.
1) install fastboot and adb on your PC
fastboot download: (https://www.xda-developers.com/google-releases-separate-adb-and-fastboot-binary-downloads/)
fastboot/adb installation/usage instructios: https://www.xda-developers.com/install-adb-windows-macos-linux/
2) once you have adb running and working with your device run the following commands to remove the desired packages.
Code:
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Play Movies
adb shell pm uninstall -k --user 0 com.android.browser # Mi Browser
adb shell pm uninstall -k --user 0 com.miui.bugreport # Mi Feedback
adb shell pm uninstall -k --user 0 com.miui.compass # Mi Compass
adb shell pm uninstall -k --user 0 com.miui.notes # Mi Notes
adb shell pm uninstall -k --user 0 com.miui.screenrecorder # Mi Screen Recorder
adb shell pm uninstall -k --user 0 com.miui.videoplayer # Mi Video
adb shell pm uninstall -k --user 0 com.miui.player # Mi Music
adb shell pm uninstall -k --user 0 com.xiaomi.midrop # Mi Drop
adb shell pm uninstall -k --user 0 com.xiaomi.mipicks # Mi Apps
adb shell pm uninstall -k --user 0 com.xiaomi.scanner # Mi Scanner
adb shell pm uninstall -k --user 0 com.google.ar.lens # Google Lens
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Docs
adb shell pm uninstall -k --user 0 com.android.chrome # Google Chrome
adb shell pm uninstall -k --user 0 com.google.android.youtube # Google YouTube
adb shell pm uninstall -k --user 0 com.duokan.phone.remotecontroller.peel.plugin # Peel Mi Remote
adb shell pm uninstall -k --user 0 com.duokan.phone.remotecontroller # Mi Remote controller
adb shell pm uninstall -k --user 0 com.miui.enbbs # Xiaomi MIUI Forum
Hi, Thanks for the easy instruction. How is the device working after reinstalling all the mentioned apps?
Stable? better performance? better battery? any error or problem? please let us know the difference?
Never mind, I used Saki_EU's Xiaomi ADB/Fastboot Tools and uninstalled many apps already. No problem, more free RAM now!
XeoNoX said:
These are quick instructions on how to remove some of the Redmi NOTE 7 and Redmi Note 7 Pro Bloatware. Root is NOT NEEDED and a UNLOCKED bootloader is NOT NEEDED to accomplish this. If there are anymore packages that are safe to remove that need to be added to the list just post a reply on this thread and i will add it to the list
Please keep this strictly REDMI NOTE 7 and REDMI NOTE 7 Pro orientated only.
1) install fastboot and adb on your PC
fastboot download: (https://www.xda-developers.com/google-releases-separate-adb-and-fastboot-binary-downloads/)
fastboot/adb installation/usage instructios: https://www.xda-developers.com/install-adb-windows-macos-linux/
2) once you have adb running and working with your device run the following commands to remove the desired packages.
Code:
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Play Movies
adb shell pm uninstall -k --user 0 com.android.browser # Mi Browser
adb shell pm uninstall -k --user 0 com.miui.bugreport # Mi Feedback
adb shell pm uninstall -k --user 0 com.miui.compass # Mi Compass
adb shell pm uninstall -k --user 0 com.miui.notes # Mi Notes
adb shell pm uninstall -k --user 0 com.miui.screenrecorder # Mi Screen Recorder
adb shell pm uninstall -k --user 0 com.miui.videoplayer # Mi Video
adb shell pm uninstall -k --user 0 com.miui.player # Mi Music
adb shell pm uninstall -k --user 0 com.xiaomi.midrop # Mi Drop
adb shell pm uninstall -k --user 0 com.xiaomi.mipicks # Mi Apps
adb shell pm uninstall -k --user 0 com.xiaomi.scanner # Mi Scanner
adb shell pm uninstall -k --user 0 com.google.ar.lens # Google Lens
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Docs
adb shell pm uninstall -k --user 0 com.android.chrome # Google Chrome
adb shell pm uninstall -k --user 0 com.google.android.youtube # Google YouTube
adb shell pm uninstall -k --user 0 com.duokan.phone.remotecontroller.peel.plugin # Peel Mi Remote
adb shell pm uninstall -k --user 0 com.duokan.phone.remotecontroller # Mi Remote controller
adb shell pm uninstall -k --user 0 com.miui.enbbs # Xiaomi MIUI Forum
Click to expand...
Click to collapse
thanks for the refresher for the code, i am now trying to get adb to for second space.
And only Google apps?
E:\desktop\platform-tools-latest-windows>adb shell pm uninstall -k --user 0 com.google.android.videos # Play Movies
* daemon not running. starting it now at tcp:5037 *
* daemon started successfully *
error: no devices/emulators found
this goes to all
running fastboot devices shows
Do I have to run the commands one by one or together is fine?
Burt_93 said:
Do I have to run the commands one by one or together is fine?
Click to expand...
Click to collapse
you can copy and paste it fromwherever your adb command line is located if your terminal (from the pc) allows pasting.
arik100 said:
E:\desktop\platform-tools-latest-windows>adb shell pm uninstall -k --user 0 com.google.android.videos # Play Movies
* daemon not running. starting it now at tcp:5037 *
* daemon started successfully *
error: no devices/emulators found
this goes to all
running fastboot devices shows
Click to expand...
Click to collapse
seems like you dont have your phone device correctly setup. make sure u have BOTH usb debugging enabled AND your computer authenticated to allow your PC to make USB debugging tasks....you can find it on your phone from developer options. youtube or google how to run and install adb
XeoNoX said:
seems like you dont have your phone device correctly setup. make sure u have BOTH usb debugging enabled AND your computer authenticated to allow your PC to make USB debugging tasks....you can find it on your phone from developer options. youtube or google how to run and install adb
Click to expand...
Click to collapse
thanks already solved the problem myself
then i run into another problem , when trying to install new rom and need to do meta? command,
solution was to update the adb tools
Thanks guys I removed all bloatwares
But how to install deleted system apps cuz I need miui gallery app
Help me!
remove bloatware
Thanks for the guide it came pretty handy when i needed it, for the fellow members that want to follow the easiest path there is a Java-writen tool for xiaomi devices.
Xiaomi ADB/Fastboot Tools by Saki_EU there is a guide in xda forums for download link & tutorial.
Code
XeoNoX said:
These are quick instructions on how to remove some of the Redmi NOTE 7 and Redmi Note 7 Pro Bloatware. Root is NOT NEEDED and a UNLOCKED bootloader is NOT NEEDED to accomplish this. If there are anymore packages that are safe to remove that need to be added to the list just post a reply on this thread and i will add it to the list
Please keep this strictly REDMI NOTE 7 and REDMI NOTE 7 Pro orientated only.
1) install fastboot and adb on your PC
fastboot download: (https://www.xda-developers.com/google-releases-separate-adb-and-fastboot-binary-downloads/)
fastboot/adb installation/usage instructios: https://www.xda-developers.com/install-adb-windows-macos-linux/
2) once you have adb running and working with your device run the following commands to remove the desired packages.
Code:
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Play Movies
adb shell pm uninstall -k --user 0 com.android.browser # Mi Browser
adb shell pm uninstall -k --user 0 com.miui.bugreport # Mi Feedback
adb shell pm uninstall -k --user 0 com.miui.compass # Mi Compass
adb shell pm uninstall -k --user 0 com.miui.notes # Mi Notes
adb shell pm uninstall -k --user 0 com.miui.screenrecorder # Mi Screen Recorder
adb shell pm uninstall -k --user 0 com.miui.videoplayer # Mi Video
adb shell pm uninstall -k --user 0 com.miui.player # Mi Music
adb shell pm uninstall -k --user 0 com.xiaomi.midrop # Mi Drop
adb shell pm uninstall -k --user 0 com.xiaomi.mipicks # Mi Apps
adb shell pm uninstall -k --user 0 com.xiaomi.scanner # Mi Scanner
adb shell pm uninstall -k --user 0 com.google.ar.lens # Google Lens
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Docs
adb shell pm uninstall -k --user 0 com.android.chrome # Google Chrome
adb shell pm uninstall -k --user 0 com.google.android.youtube # Google YouTube
adb shell pm uninstall -k --user 0 com.duokan.phone.remotecontroller.peel.plugin # Peel Mi Remote
adb shell pm uninstall -k --user 0 com.duokan.phone.remotecontroller # Mi Remote controller
adb shell pm uninstall -k --user 0 com.miui.enbbs # Xiaomi MIUI Forum
Click to expand...
Click to collapse
May I request for another code for these apps? Mi pay and Mi credit?
Hi, followed the instructions.
Phone immediately got stuck in boot loop to redmi recovery 3.0 screen. Rebooting repeats process.
There is a "Connect with MiAssistant option", but this application does not recognize the phone. In the forum for the app some people say that the english version will not connect with newer versions of android (as in the redmi note 7)
So I kind of just lost my phone now, rather than improved it.. Not sure what to do now, I did not want to get into unlocking the bootloader and flashing roms as I'm not comfortable with that and really don't trust it to actually work.
Any advice would appreciated, thanks.
[email protected] said:
Hi, followed the instructions.
Phone immediately got stuck in boot loop to redmi recovery 3.0 screen. Rebooting repeats process.
There is a "Connect with MiAssistant option", but this application does not recognize the phone. In the forum for the app some people say that the english version will not connect with newer versions of android (as in the redmi note 7)
So I kind of just lost my phone now, rather than improved it.. Not sure what to do now, I did not want to get into unlocking the bootloader and flashing roms as I'm not comfortable with that and really don't trust it to actually work.
Any advice would appreciated, thanks.
Click to expand...
Click to collapse
i doubt it was any of those packages that have you stuck in a boot loop as they are non system apk's. however if you want to restore your phone back to OEM, just grab the OFFICIAL MI TOOLS from XIAOMI and flash the latest firmware. https://xiaomifirmware.com/roms/miui-roms-for-xiaomi-redmi-note-7-lavender/
Is there any way to remove the four features at the top of your recent apps shade? Cleaner, security scan, deep clean, manage apps.
DelphinusMinor said:
Is there any way to remove the four features at the top of your recent apps shade? Cleaner, security scan, deep clean, manage apps.
Click to expand...
Click to collapse
You can go into Settings, Home screen and recents then untick show suggestions
unezi said:
You can go into Settings, Home screen and recents then untick show suggestions
Click to expand...
Click to collapse
I completed missed that. Thank you!
More bloatware
Hi, you can add this to clean your Redmi Note 7:
Code:
adb shell pm uninstall –k ––user 0 com.miui.calculator
adb shell pm uninstall –k ––user 0 com.android.calendar
adb shell pm uninstall –k ––user 0 com.miui.bugreport
adb shell pm uninstall –k ––user 0 com.mi.android.globalFileexplorer
adb shell pm uninstall –k ––user 0 com.miui.fm
adb shell pm uninstall –k ––user 0 com.miui.gallery
adb shell pm uninstall –k ––user 0 com.xiaomi.glgm
adb shell pm uninstall –k ––user 0 com.mipay.wallet.id
adb shell pm uninstall –k ––user 0 com.mipay.wallet.in
adb shell pm uninstall –k ––user 0 com.xiaomi.payment
adb shell pm uninstall –k ––user 0 com.xiaomi.mirecycle
adb shell pm uninstall –k ––user 0 com.miui.virtualsim
adb shell pm uninstall –k ––user 0 com.android.soundrecorder
adb shell pm uninstall –k ––user 0 com.miui.cleanmaster
adb shell pm uninstall –k ––user 0 com.miui.securitycenter
adb shell pm uninstall –k ––user 0 com.miui.securityadd
adb shell pm uninstall –k ––user 0 com.miui.miwallpaper
adb shell pm uninstall –k ––user 0 com.miui.weather2
adb shell pm uninstall –k ––user 0 com.miui.providers.weather
adb shell pm uninstall –k ––user 0 com.miui.yellowpage
adb shell pm uninstall –k ––user 0 com.miui.antispam
adb shell pm uninstall –k ––user 0 com.xiaomi.simactivate.service
adb shell pm uninstall –k ––user 0 com.miui.msa.global
Each time I run your command, adb says “adb error device null not found”. BTW, I had flashed TWRP and vbmeta image via adb/fastboot without any problem.
thanks. very nice nifty tool and works great.

P40 Pro debloating guide

Hey everyone,
I've spent the last couples days going through all the installed packages, cross-referencing different debloating guides and testing my changes. I'm running the latest EMUI 10.1.0.158 (C636).
RECOMMENDATIONS: if you can, follow this debloating guide right after a factory reset; this simply guarantees a fresh clean start. Otherwise, start by backing up your apps and important files to an external device. The built-in backup app is ideal for preserving your apps and their settings, but make sure to move these backups OFF THE PHONE. Then, you can either remove all the apps (in my guide) all at once, or remove a few at a time and reboot the phone in between. Rebooting in between reduces the chance of "shocking" the OS with too many changes all at once which could result in boot looping. Just keep in mind that I did not find that to be necessary when debloating right after a factory reset, but your mileage may vary.
Here is what I personally debloated without any adverse effect, after 2 weeks of daily use:
adb shell pm uninstall --user 0 com.huawei.hicloud ****** Huawei cloud features
adb shell pm uninstall --user 0 com.huawei.browser ****** Stock browser, replaced with Mozilla
adb shell pm uninstall --user 0 com.huawei.browserhomepage ****** Stock browser component
adb shell pm uninstall --user 0 com.android.bookmarkprovider ****** Stock bookmark content
adb shell pm uninstall --user 0 com.android.providers.partnerbookmarks ****** Stock bookmark content
adb shell pm uninstall --user 0 com.huawei.wallet ****** Huawei Wallet app
adb shell pm uninstall --user 0 com.huawei.music ****** Stock music application, replaced with PowerAmp (use the APK from their website, it does not rely on Google Services)
adb shell pm uninstall --user 0 com.huawei.phoneservice ****** Huawei customer support, also known as HiCare
adb shell pm uninstall --user 0 com.huawei.hifolder ****** AppAdvisor
adb shell pm uninstall --user 0 com.huawei.parentcontrol ****** Digital balance, parental control features
adb shell pm uninstall --user 0 com.huawei.hicard ****** Huawei Cards, no info but recommended in some guides, no negative consequences
adb shell pm uninstall --user 0 com.huawei.hitouch ****** Allows you to shop for an object that you took a picture of
adb shell pm uninstall --user 0 com.huawei.hiassistantoversea ****** HiVoice. Huawei's voice assistant to replace "Hey Google"
adb shell pm uninstall --user 0 com.huawei.fastapp ****** Quick App Center, another type of app distribution
adb shell pm uninstall --user 0 com.huawei.imedia.sws ****** Histen. Special sound effects found in the sound settings. I only care about my EQ settings in PowerAmp
adb shell pm uninstall --user 0 com.huawei.intelligent ****** Huawei Assistant. Shopping recommendations
adb shell pm uninstall --user 0 com.huawei.magazine ****** Magazine unlock. Downloads wallpapers for your lock screen. I don't need my phone needlessly connecting to remote servers
adb shell pm uninstall --user 0 com.huawei.hwblockchain ****** I don't do anything blockchain related
adb shell pm uninstall --user 0 com.huawei.hwstartupguide ****** A one-time setup app that is no longer needed
adb shell pm uninstall --user 0 com.android.onetimeinitializer ****** A one-time setup app that is no longer needed
adb shell pm uninstall --user 0 com.huawei.android.instantonline ****** No information but recommended in some guides, no negative consequences
adb shell pm uninstall --user 0 com.huawei.hwpanpayservice ****** This is payment related, I don't use my phone as a payment method nor do I use Huawei Wallet
adb shell pm uninstall --user 0 com.bjbyhd.screenreader_huawei ****** An accessibility feature for visually impaired people
adb shell pm uninstall --user 0 com.huawei.search ****** HiSearch. This does not affect the search bar in the Settings
adb shell pm uninstall --user 0 com.huawei.hwdetectrepair ****** Smart Diagnosis app. It diagnoses hardware problems which I could do myself
adb shell pm uninstall --user 0 com.huawei.hiview ****** This supposedly displays details/attributes of pictures. After removing this, I can still access the picture attributes in the stock Gallery so I'm not sure what this is actually about
adb shell pm uninstall --user 0 com.huawei.hiviewtunnel ****** Related to HiView.
adb shell pm uninstall --user 0 com.huawei.hidisk ****** Stock file explorer, replaced with File Manager +
adb shell pm uninstall --user 0 com.huawei.android.chr ****** HwChrService, this collects data about your usage of the cellular network. No thanks
adb shell pm uninstall --user 0 com.huawei.bd ****** Huawei User Experience app
adb shell pm uninstall --user 0 com.huawei.android.karaoke ****** Self explanatory
adb shell pm uninstall --user 0 com.huawei.desktop.explorer ****** EMUI Desktop Mode for connecting to an external display
adb shell pm uninstall --user 0 com.huawei.android.FloatTasks ****** Navigation Dock, I don't care for that UI feature
adb shell pm uninstall --user 0 com.huawei.languagedownloader ****** According to some guides, this is unsafe but I don't need another downloader for something that I'll never use
adb shell pm uninstall --user 0 com.huawei.lbs ****** Location Service. Sounds scary but I am still able to use all my GPS and location services. My location based weather widgets, Waze and Google Maps connect just as fast and accurately as before
adb shell pm uninstall --user 0 com.huawei.featurelayer.sharedfeature.map ****** Huawei Map Service. I removed it and have no issues using Waze and Google Maps
adb shell pm uninstall --user 0 com.hisi.mapcon ****** This is apparently not recommended when using WiFi calling, which I don't
adb shell pm uninstall --user 0 com.huawei.himovie.overseas ****** Stock video application, replaced with VLC. This integrates perfectly with the stock Camera and Gallery apps
adb shell pm uninstall --user 0 com.android.stk ****** SIM Toolkit. Not supported by US SIM cards
adb shell pm uninstall --user 0 com.android.mms ****** Stock SMS application, replaced with Pulse. I can still send/receive SMS & MMS. Textra looks like a good alternative too
adb shell pm uninstall --user 0 com.huawei.HwMultiScreenShot ****** Scrollshot. Basic screenshots still work, I don't use the knock feature
adb shell pm uninstall --user 0 com.huawei.smartshot ****** Smart screenshot. Basic screenshots still work, I don't use the knock feature
adb shell pm uninstall --user 0 com.huawei.bluetooth ****** Allows importing phone contacts via Bluetooth, something I've never done in my life
adb shell pm uninstall --user 0 com.swiftkey.swiftkeyconfigurator ****** Older version of SwiftKey, replaced with the latest SwiftKey APK
adb shell pm uninstall --user 0 com.touchtype.swiftkey ****** Older version of SwiftKey, replaced with the latest SwiftKey APK. Do not do this before downloading the APK for your new keyboard otherwise you won't have a keyboard to use to search for a replacement
adb shell pm uninstall --user 0 com.huawei.pcassistant ****** Used when connecting your phone to your PC using HiSuite
adb shell pm uninstall --user 0 com.android.egg ****** A hidden animation that no one needs to see
adb shell pm uninstall --user 0 com.android.backupconfirm ****** Google Backup, unusable without Google Services. This does not affect Huawei's backup app, I was able to back up all my apps and settings
adb shell pm uninstall --user 0 com.android.calllogbackup ****** Google Call Log Backup/Restore. This does not affect Huawei's backup app, I was able to back up my calls successfully
adb shell pm uninstall --user 0 com.huawei.scanner ****** AI Lens. Shop for objects that you take a picture of. I can't stand these "features" that revolve around shopping. This de-clutters the camera interface by removing the AI Lens button on the top left corner and does not break the AR Measure app.
adb shell pm uninstall --user 0 com.huawei.contacts ****** Dialer & contacts app. I first installed my dialer replacement, True Phone (version 2.0.0-hw rev 99 from the AppGallery) and then ran this command. Although this should not actually delete your contacts, make sure to back them up. I've had absolutely 0 issue making or receiving calls after deleting the stock dialer.
adb shell pm uninstall --user 0 com.huawei.hwsearch ****** Petal Search widget. I personally use APKPure and sometimes the AppGallery.
adb shell pm uninstall --user 0 package:com.huawei.android.hwupgradeguide ****** New package that came with .158. There is no description online but judging from the name, I don't need it
NOTICE THAT I DO NOT INCLUDE THE -k PARAMETER IN MY COMMANDS, unlike most guides found online. I do not get any error running the commands as such, and it actually clears the data created by those apps. In other words, we're not only debloating your user interface but also your storage!
To restore any app removed via ADB:
adb shell cmd package install-existing <package_name>
I always try to uninstall apps through Android before resorting to ADB. I did not really keep track of apps that I uninstalled through the menu, so it's just easier to tell you which stock apps I kept installed. By stock app, I ONLY MEAN actual apps that you can open from the home screen:
-AppGallery. This requires com.huawei.hwid to work. I needed it to get Snapchat, I might ADB-uninstall it now that Snapchat is installed
-Phone Clone. This could always be useful for porting apps over
-Optimizer
-Themes
-Live wallpaper (com.huawei.livewallpaper.paradise, also known as Brocade)
-Calendar widget/app
-Camera. Obviously. Who in their right mind would get this phone lacking a major component of Android (Play Services), if not for the camera
-Gallery. For pictures and editing
-Contacts. This is also the phone dialer. I have now uninstalled this app and replaced it with True Dialer 2.0 by Hamster Beat (available on AppGallery)
-Compass. Works great
-Smart Remote. If I ever decide to make use of my IR blaster
-AR Measure. I usually don't care for stuff like this but this actually works great and looks awesome
Here are apps/system processes that actually have an uninstall button but that I DID NOT UNINSTALL:
-Backup (com.huawei.KoBackup). I use this app to create backups periodically. Without root, this native app is able to backup a lot more than any other 3rd party backup app
-com.huawei.game.kitserver (I don't play games but if I ever decide to, I'd like to avoid breaking features)
-Contacts Sync (com.huawei.contacts.sync). I have now uninstalled this app as I no longer use the stock dialer (com.huawei.contacts)
-Storage manager (com.android.storemanager)
My goal is to remove low quality, "spyware" or unnecessary apps without removing or breaking useful features. "Useful" is always a little subjective, so decide for yourself based on my descriptions and comments!
I added AI Lens to my debloat list.
I just updated to 10.1.0.122 and did not find new packages installed or restored as part of the ROM update.
thank you very much my friend ! just did this on Mate XS !!!
finally !
avetny said:
thank you very much my friend ! just did this on Mate XS !!!
finally !
Click to expand...
Click to collapse
You're more than welcome. I've been doing some network analysis using the AdGuard Firewall and I might update this guide with my findings. I found out the phone is phoning back home (to China) quite a bit, especially Huawei Cloud and HiCloud servers despite not using any of these apps or Huawei cloud services.
how do i do this?
i cant use adb i have developer options and usb debugging on but adb devices dont show the phone
It's probably a driver problem. Take a look at this guide: https://androidmtk.com/download-minimal-adb-and-fastboot-tool
H-Emmanuel said:
It's probably a driver problem. Take a look at this guide: https://androidmtk.com/download-minimal-adb-and-fastboot-tool
Click to expand...
Click to collapse
thank you got i to work had to revoke usb debugging
H-Emmanuel said:
Hey everyone,
I've spent the last couples days going through all the installed packages, cross-referencing different debloating guides and testing my changes. I'm running the latest EMUI 10.1.0.114 and here's what I debloated so far:
adb shell pm uninstall --user 0 com.huawei.hicloud ****** Huawei cloud features
adb shell pm uninstall --user 0 com.huawei.browser ****** Stock browser, replaced with Mozilla
adb shell pm uninstall --user 0 com.huawei.browserhomepage ****** Stock browser component
adb shell pm uninstall --user 0 com.android.bookmarkprovider ****** Stock bookmark content
adb shell pm uninstall --user 0 com.android.providers.partnerbookmarks ****** Stock bookmark content
adb shell pm uninstall --user 0 com.huawei.wallet ****** Huawei Wallet app
adb shell pm uninstall --user 0 com.huawei.music ****** Stock music application, replaced with PowerAmp (use the APK from their website, it does not rely on Google Services)
adb shell pm uninstall --user 0 com.huawei.phoneservice ****** Huawei customer support, also known as HiCare
adb shell pm uninstall --user 0 com.huawei.hifolder ****** AppAdvisor
adb shell pm uninstall --user 0 com.huawei.parentcontrol ****** Digital balance, parental control features
adb shell pm uninstall --user 0 com.huawei.hicard ****** Huawei Cards, no info but recommended in some guides, no negative consequences
adb shell pm uninstall --user 0 com.huawei.hitouch ****** Allows you to shop for an object that you took a picture of
adb shell pm uninstall --user 0 com.huawei.hiassistantoversea ****** HiVoice. Huawei's voice assistant to replace "Hey Google"
adb shell pm uninstall --user 0 com.huawei.fastapp ****** Quick App Center, another type of app distribution
adb shell pm uninstall --user 0 com.huawei.imedia.sws ****** Histen. Special sound effects found in the sound settings. I only care about my EQ settings in PowerAmp
adb shell pm uninstall --user 0 com.huawei.intelligent ****** Huawei Assistant. Shopping recommendations
adb shell pm uninstall --user 0 com.huawei.magazine ****** Magazine unlock. Downloads wallpapers for your lock screen. I don't need my phone needlessly connecting to remote servers
adb shell pm uninstall --user 0 com.huawei.hwblockchain ****** I don't do anything blockchain related
adb shell pm uninstall --user 0 com.huawei.hwstartupguide ****** A one-time setup app that is no longer needed
adb shell pm uninstall --user 0 com.android.onetimeinitializer ****** A one-time setup app that is no longer needed
adb shell pm uninstall --user 0 com.huawei.android.instantonline ****** No information but recommended in some guides, no negative consequences
adb shell pm uninstall --user 0 com.huawei.hwpanpayservice ****** This is payment related, I don't use my phone as a payment method nor do I use Huawei Wallet
adb shell pm uninstall --user 0 com.bjbyhd.screenreader_huawei ****** An accessibility feature for visually impaired people
adb shell pm uninstall --user 0 com.huawei.search ****** HiSearch. This does not affect the search bar in the Settings
adb shell pm uninstall --user 0 com.huawei.hwdetectrepair ****** Smart Diagnosis app. It diagnoses hardware problems which I could do myself
adb shell pm uninstall --user 0 com.huawei.hiview ****** This supposedly displays details/attributes of pictures. After removing this, I can still access the picture attributes in the stock Gallery so I'm not sure what this is actually about
adb shell pm uninstall --user 0 com.huawei.hiviewtunnel ****** Related to HiView.
adb shell pm uninstall --user 0 com.huawei.hidisk ****** Stock file explorer, replaced with File Manager +
adb shell pm uninstall --user 0 com.huawei.android.chr ****** HwChrService, this collects data about your usage of the cellular network. No thanks
adb shell pm uninstall --user 0 com.huawei.bd ****** Huawei User Experience app
adb shell pm uninstall --user 0 com.huawei.android.karaoke ****** Self explanatory
adb shell pm uninstall --user 0 com.huawei.desktop.explorer ****** I don't need Huawei doing anything on my PC
adb shell pm uninstall --user 0 com.huawei.android.FloatTasks ****** Navigation Dock, I don't care for that UI feature
adb shell pm uninstall --user 0 com.huawei.languagedownloader ****** According to some guides, this is unsafe but I don't need another downloader for something that I'll never use
adb shell pm uninstall --user 0 com.huawei.lbs ****** Location Service. Sounds scary but I am still able to use all my GPS and location services. My location based weather widgets and Waze connect just as fast and accurately as before
adb shell pm uninstall --user 0 com.huawei.featurelayer.sharedfeature.map ****** Huawei Map Service. I removed it and have no issues using Waze
adb shell pm uninstall --user 0 com.hisi.mapcon ****** This is apparently not recommended when using WiFi calling, which I don't
adb shell pm uninstall --user 0 com.huawei.himovie.overseas ****** Stock video application, replaced with VLC. This integrates perfectly with the stock Camera and Gallery apps
adb shell pm uninstall --user 0 com.android.stk ****** SIM Toolkit. Not supported by US SIM cards
adb shell pm uninstall --user 0 com.android.mms ****** Stock SMS application, replaced with Pulse. I can still send/receive SMS & MMS. Textra looks like a good alternative too
adb shell pm uninstall --user 0 com.huawei.HwMultiScreenShot ****** Scrollshot. Basic screenshots still work, I don't use the knock feature
adb shell pm uninstall --user 0 com.huawei.smartshot ****** Smart screenshot. Basic screenshots still work, I don't use the knock feature
adb shell pm uninstall --user 0 com.huawei.bluetooth ****** Allows importing phone contacts via Bluetooth, something I've never done in my life
adb shell pm uninstall --user 0 com.swiftkey.swiftkeyconfigurator ****** Older version of SwiftKey, replaced with the latest SwiftKey APK
adb shell pm uninstall --user 0 com.touchtype.swiftkey ****** Older version of SwiftKey, replaced with the latest SwiftKey APK
adb shell pm uninstall --user 0 com.huawei.pcassistant ****** Used when connecting your phone to your PC using HiSuite
adb shell pm uninstall --user 0 com.android.egg ****** A hidden animation that no one needs to see
adb shell pm uninstall --user 0 com.android.backupconfirm ****** Google Backup, unusable without Google Services. This does not affect Huawei's backup app, I was able to back up all my apps and settings
adb shell pm uninstall --user 0 com.android.calllogbackup ****** Google Call Log Backup/Restore. This does not affect Huawei's backup app, I was able to back up my calls successfully
adb shell pm uninstall --user 0 com.huawei.scanner ****** AI Lens. Shop for objects that you take a picture of. I can't stand these "features" that revolve around shopping. This de-clutters the camera interface by removing the AI Lens button on the top left corner and does not break the AR Measure app.
NOTICE THAT I DO NOT INCLUDE THE -k PARAMETER IN MY COMMANDS, unlike most guides found online. I do not get any error running the commands as such, and it actually clears the data created by those apps. In other words, we're not only debloating your user interface but also your storage!
To restore any app removed via ADB:
adb shell cmd package install-existing <package_name>
I always try to uninstall apps through Android before resorting to ADB. I did not really keep track of apps that I uninstalled through the menu, so it's just easier to tell you which stock apps I kept installed. By stock app, I ONLY MEAN actual apps that you can open from the home screen:
-AppGallery. This requires com.huawei.hwid to work. I needed it to get Snapchat, I might ADB-uninstall it now that Snapchat is installed
-Phone Clone. This could always be useful for porting apps over
-Optimizer
-Themes
-Live wallpaper (com.huawei.livewallpaper.paradise, also known as Brocade)
-Calendar widget/app
-Camera. Obviously. Who in their right mind would get this phone lacking a major component of Android (Play Services), if not for the camera
-Gallery. For pictures and editing
-Contacts. This is also the phone dialer
-Compass. Works great
-Smart Remote. If I ever decide to make use of my IR blaster
-AR Measure. I usually don't care for stuff like this but this actually works great and looks awesome
Here are apps/system processes that actually have an uninstall button but that I DID NOT UNINSTALL:
-com.huawei.game.kitserver (I don't play games but if I ever decide to, I'd like to avoid breaking features)
-Contacts Sync (com.huawei.contacts.sync). I use the stock dialer and I'm not sure whether this can be safely removed
-Storage manager (com.android.storemanager)
My goal is to remove low quality, "spyware" or unnecessary apps without removing or breaking useful features. "Useful" is always a little subjective, so decide for yourself based on my descriptions and comments!
Click to expand...
Click to collapse
Thanks for this have you noticed any improvement with battery life after debloating all of these apps?
Any issues after debloating?
Also, can you please tell me the exact command you have to type to debloat? Starting from ADB shell, what is the next command please? And what software /hardware do I need to debloat?
Thanos88 said:
Thanks for this have you noticed any improvement with battery life after debloating all of these apps?
Any issues after debloating?
Also, can you please tell me the exact command you have to type to debloat? Starting from ADB shell, what is the next command please? And what software /hardware do I need to debloat?
Click to expand...
Click to collapse
setting click build 7 times enable developer mode
go in developer mode enable usb debugging
download adb
open folder shift + right click
open commend window
adb devices to see if your device is found
then copy paste each commend
Thanos88 said:
Thanks for this have you noticed any improvement with battery life after debloating all of these apps?
Any issues after debloating?
Also, can you please tell me the exact command you have to type to debloat? Starting from ADB shell, what is the next command please? And what software /hardware do I need to debloat?
Click to expand...
Click to collapse
No issues, no crashes and no weird behavior. If you read my comments, I explain what each command does and whether or not it's removing an important feature.
You simply have to copy/paste the commands in bold, these are the full commands.
I pretty much debloated the phone as soon as I got it so I can't really speak about battery life improvement.
A few days ago I even removed the stock Huawei dialer in favor of True Phone (2.0.0.0-hw rev 99 found on the AppGallery). I just updated my first post to reflect that.
H-Emmanuel said:
No issues, no crashes and no weird behavior. If you read my comments, I explain what each command does and whether or not it's removing an important feature.
You simply have to copy/paste the commands in bold, these are the full commands.
I pretty much debloated the phone as soon as I got it so I can't really speak about battery life improvement.
A few days ago I even removed the stock Huawei dialer in favor of True Phone (2.0.0.0-hw rev 99 found on the AppGallery).
Click to expand...
Click to collapse
Thanks!! I stupidly uninstalled something I shouldn't have, restarted the phone and phone wouldn't boot past the huawei logo ?? had to perform factory reset. Be very careful with what you uninstall
Thanos88 said:
Thanks!! I stupidly uninstalled something I shouldn't have, restarted the phone and phone wouldn't boot past the huawei logo had to perform factory reset. Be very careful with what you uninstall
Click to expand...
Click to collapse
Do you remember what you uninstalled specifically? There's a chance you could have restored the missing apps using ADB in Fastboot Mode instead of doing a factory reset.
The list of apps in my post is what I personally removed right after a factory reset (to make sure I was starting from scratch).
H-Emmanuel said:
Do you remember what you uninstalled specifically? There's a chance you could have restored the missing apps using ADB in Fastboot Mode instead of doing a factory reset.
The list of apps in my post is what I personally removed right after a factory reset (to make sure I was starting from scratch).
Click to expand...
Click to collapse
I have no idea what I removed but even after removing it and restating the phone, there was no way to reinstall the app because the phone wouldn't load last the huawei logo meaning I couldn't get it into adb mode at all.
Alright. If I understand correctly, you also removed things that were not on my list, correct?
H-Emmanuel said:
Alright. If I understand correctly, you also removed things that were not on my list, correct?
Click to expand...
Click to collapse
That's correct yes. You won't really know if the things you've removed were safe to remove until you've restarted the phone pretty much
Yep that's true! I wrote this guide after doing many reboots, I'll update my post to add some guidelines.
H-Emmanuel said:
Yep that's true! I wrote this guide after doing many reboots, I'll update my post to add some guidelines.
Click to expand...
Click to collapse
excellent, as long as you rebooted your device after the debloats you've mentioned in your post that's good ?? I still have some more debloats left to do from your list. I was seriously hoping for better battery life, I hope debloating will improve it
Works like a charm, thanks
faceliler said:
Works like a charm, thanks
Click to expand...
Click to collapse
Glad to hear you've had success with this guide
Awesome thank you very much , i thought we need root permissions to do that

App/task switcher not appearing after using adb

Hi everyone,
I've done a quick search, sorry if this has been covered.
I've done something dumb. I followed a few steps of a guide to remove bloatware of Huawei but I was probably not careful enough. I've removed several apps:
adb shell pm uninstall -k --user 0 com.huawei.android.thememanager
adb shell pm uninstall -k --user 0 com.huawei.android.launcher
adb shell pm uninstall -k --user 0 com.android.mediacenter
adb shell pm uninstall -k --user 0 com.huawei.mediacenter
adb shell pm uninstall -k --user 0 com.huawei.vassistant
adb shell pm uninstall -k --user 0 com.huawei.appmarket
adb shell pm uninstall -k --user 0 com.huawei.search
Most of these removals I was happy with, but it took a bit of effort the get an app launcher again (nova launcher), because I removed the only one that was active. But with adb I could access the app store and install it. However, now I'm unable to access the "active apps" (that you normally get when swiping up and holding) or go to the Home Screen with a gesture. No recent apps appear.
It could be that I'm missing a system app now that is required for this functionality. My last resort is to do a full re-install, but I am hoping that someone knows an alternative to try?
Security-wise I'm a bit too paranoid to simply download .apk files from some random website. So the full reinstall might be my only option.
I do realize that I've done something dumb to uninstall these apps, so I may need to bite the bullet. The phone is still usable, but it's definitely not great not being able to switch tasks.
Any suggestions are very welcome! Thanks!

Categories

Resources