How to uninstall preinstalled Google apps? - Android Q&A, Help & Troubleshooting

Is there any way to uninstall preinstalled Google apps on phone with Android such as Gboard, Google Wallet, Lens, Photos etc?

How to uninstall carrier/OEM bloatware without root access
If you want to get rid of carrier/OEM apps from your phone, here's how you can uninstall bloatware from your device without root access!
www.xda-developers.com
any open source GUI adb tool for macos can disable/delete bloatware?
list apps and delete/disable each of them by issuing command is boring. anyone knows any open source lightweight gui tool to do so? thanks
forum.xda-developers.com

aIecxs said:
How to uninstall carrier/OEM bloatware without root access
If you want to get rid of carrier/OEM apps from your phone, here's how you can uninstall bloatware from your device without root access!
www.xda-developers.com
any open source GUI adb tool for macos can disable/delete bloatware?
list apps and delete/disable each of them by issuing command is boring. anyone knows any open source lightweight gui tool to do so? thanks
forum.xda-developers.com
Click to expand...
Click to collapse
Are you sure that this solution allows to uninstall these apps completely? Won't they be still nested somewhere in phone?

one cannot delete system apps without breaking OTA updates. that's why Magisk is systemless-root method, it does not modify system partition.
disabled apps remain disabled until factory reset. do a backup beforehand, you will brick your device...

aIecxs said:
one cannot delete system apps without breaking OTA updates. that's why Magisk is systemless-root method, it does not modify system partition.
disabled apps remain disabled until factory reset. do a backup beforehand, you will brick your device...
Click to expand...
Click to collapse
But solution that @aIecxs suggested seems to work different than just disabling an app. When using ADB to uninstall an app it is no longer visible in apps management in settings.

Related

Create system app with the ROM and prevent from being disabled

For a project I need to install an app in a custom rom as a system app to prevent being uninstalled. The problem comes with Android 6, where some system apps can be disabled. For example, Google apps like Youtube or Gmail can be disabled, but other apps like Calendar, Messages or Clock can't be disabled.
Now I'm placing my apk inside /system/priv-app but my app can be disabled. ¿Any idea how to prevent that?
Thanks in advance!
With custom roms there is no way to prevent it. All it takes is root and a root browser or an adb command.
zelendel said:
With custom roms there is no way to prevent it. All it takes is root and a root browser or an adb command.
Click to expand...
Click to collapse
Thanks for the quick response. Well, I assume that using root or adb apps can be unninstalled.
The only thing I want is to prevent a "normal user" to uninstall the app throught the Android UI.
With the app now on /system/app/my.apk I've achieved to prevent Android from uninstalling the app, but it can be disabled (Android 6.0). So my question is how can I prevent also from disable the app?
dlaballosn said:
Thanks for the quick response. Well, I assume that using root or adb apps can be unninstalled.
The only thing I want is to prevent a "normal user" to uninstall the app throught the Android UI.
With the app now on /system/app/my.apk I've achieved to prevent Android from uninstalling the app, but it can be disabled (Android 6.0). So my question is how can I prevent also from disable the app?
Click to expand...
Click to collapse
As far I know there is no way to prevent it. If there is it will be a bool settings. I would look at an app that doesn't allow disabling it. But I think you might need a Google signature for that.
Search stack overflow and you might find something.

[GUIDE] Remove system apps/bloat - ADB | NO ROOT

Hello all,
I found a nice little guide, which works on most of the android phones - if you want to remove system apps, but do not want to root.
All credits to dosangst on Reddit!
Working ADB connection is required.
And as always, be careful what you remove! Removing critical apps will result in bootloop and you have to reflash firmware/ROM.
1. connect device, make sure ADB is working (check with CMD "adb devices")
2. go to shell, using CMD "adb shell"
3. get list of install packages using CMD "pm list packages" (use google to find out what does each package name means).
4. remove package using CMD "pm uninstall -k --user 0 $packagname" (e.g. pm uninstall -k --user 0 com.android.inputdevices)
5. if correctly typed, you receive message "SUCCESS"
Optionally a reboot might be required.
Thanks.
@davebugyi
thanks for this thread. working great.
Thanks bro
In fact , we can use some data erase software , of course ,we need to install it form its website, it isn't free
Thanks thanks thanks!!! Yeah
Thank's, working good on P9 too.
Could anyone please enlighten me (and all others who might wounder) which of the system apps that can be removed "safely"?
I went form a OnePlus X and got the P10 mainly cause I got it for 359$ / 313€ without contract but I really don´t like bloat apps. HiCare might be OK to have but Notes, Music, Videos, E-mail, Health, Gallery and possibly some more apps are just a waste of space since I prefer other apps for that. I guess I just could make a folder and put all Huawei bloat inside of it and just feel a little sick each time I scroll by it so it would be nice to remove as much of it as possible.
I would happily donate a beer to the person who comes up with a list of "safe" apps to remove.
SwedishBadger said:
Could anyone please enlighten me (and all others who might wounder) which of the system apps that can be removed "safely"?
I went form a OnePlus X and got the P10 mainly cause I got it for 359$ / 313€ without contract but I really don´t like bloat apps. HiCare might be OK to have but Notes, Music, Videos, E-mail, Health, Gallery and possibly some more apps are just a waste of space since I prefer other apps for that. I guess I just could make a folder and put all Huawei bloat inside of it and just feel a little sick each time I scroll by it so it would be nice to remove as much of it as possible.
Click to expand...
Click to collapse
I want to know too, what apps we can remove safely.
Is it safe to remove "Huawei Mobile Services"? Also, it is so weird that my P10 has facebook and facebook messenger as system app...
nice
Music, Videos, E-mail, Health, Gallery and possibly some more apps are just a waste of space since I prefer other apps for that. I guess I just could make a folder and put all Huawei bloat inside of it and just feel a little sick each time I scroll by it so it would be nice to remove as much of it as possible.
How is this possible?
Android mount /system as readonly when device boots. Due to that (seems) not possible to uninstall apps from /system. I think you are uninstalling apps that are installed on /data/app but not /system apps.
Apps installed on /data/app can be unistalled accessing to android settings -> apps -> [select a app] -> uninstall
davebugyi said:
Hello all,
I found a nice little guide, which works on most of the android phones - if you want to remove system apps, but do not want to root.
All credits to dosangst on Reddit!
Working ADB connection is required.
And as always, be careful what you remove! Removing critical apps will result in bootloop and you have to reflash firmware/ROM.
1. connect device, make sure ADB is working (check with CMD "adb devices")
2. go to shell, using CMD "adb shell"
3. get list of install packages using CMD "pm list packages" (use google to find out what does each package name means).
4. remove package using CMD "pm uninstall -k --user 0 $packagname" (e.g. pm uninstall -k --user 0 com.android.inputdevices)
5. if correctly typed, you receive message "SUCCESS"
Optionally a reboot might be required.
Click to expand...
Click to collapse
bartito said:
How is this possible?
Android mount /system as readonly when device boots. Due to that (seems) not possible to uninstall apps from /system. I think you are uninstalling apps that are installed on /data/app but not /system apps.
Apps installed on /data/app can be unistalled accessing to android settings -> apps -> [select a app] -> uninstall
Click to expand...
Click to collapse
I do not know the technical background, but probably it evokes some special user priviliges hidden in the system.
To be honest I never checked where are those apps located.
For example try to uninstall GBoard (vtr-l29, B151)- not possible, not even the disable function. With this method it could be removed.
The apps are only removed for the current user. Detailed info is here: https://www.xda-developers.com/uninstall-carrier-oem-bloatware-without-root-access/
I was practising this method months ago and I just found out that after I rooted my phone apparently the apps are still inside data folder. Or maybe something happened in between that I wasn't aware of.
Tried to remove com.android.calendar but no luck
OMG, thanks dude! :*
Thanks
Works great on Huawei Y5 201 7 also
any way to revert changes without a fact reset?
People if you don't like the original Huawei apps you probably don't like the default launcher. Why not just use for example nova launcher and hide all the apps that you don't use from launcher. Also you can change settings in advanced apps settings to use apps you prefer as default. Like gmail as main mail app, Google photos for gallery and so on.
64GB is enough to keep all those apps there.

Question Debloating system apps

Has anybody tried the universal debloater script for this phone? Tried uninstalling certain system apps through lucky patcher and titanium backup but with no success. Also tried deleting the apps through root explorer but in vain. Does anyone know how to change the permission of drives or internal folder /files without softbricking the phone. Any help would be much appreciated
i did it trough ADB SHELL commands
look here:
Oneplus pure debloat
A side note before running the .bat file.....make surw you have a keyboard app to install as gboard is disabled....i recommend openboard from fdroid. UPDATE UPDATE UPDATE Few more too add to debloat com.qti.dpmserviceapp com.qti.diagservices...
forum.xda-developers.com
i only uninstalled the apps i didnt wanted on my phone. i looked up the package name and removed it
if you dont have root look here:
How to uninstall carrier/OEM bloatware without root access
If you want to get rid of carrier/OEM apps from your phone, here's how you can uninstall bloatware from your device without root access!
www.xda-developers.com
kkdamion said:
if you dont have root look here:
How to uninstall carrier/OEM bloatware without root access
If you want to get rid of carrier/OEM apps from your phone, here's how you can uninstall bloatware from your device without root access!
www.xda-developers.com
Click to expand...
Click to collapse
Rooted the phone as soon as I got it. The only thing that I could do was freeze the apps with lucky patcher. However, the adb command did worked like a charm. Thanks.
I always freeze them with Swift Backup. That works perfectly. The nice thing about freezing over deleting is that once you do an update, they keep being freezed. If you deleted them before, you have to start over and over again after every update.
Yeah also a good solution.

Question Pad 5 Pro remove system apps no root

Is there a good way of doing this? I've removed several Chinese apps already. But would like to remove all the Chinese language (system) apps without root.
Yes, it is possible through adb. There is a command called "pm" that can be used to uninstall applications from the system. But use it with caution, as you can uninstall something necessary for the system

Question Debloating S22 plus

Hi all,
what is the easiest and best way to debloat and optimize S22+. For non rooted users ofc
I dont need all Samsung apps, Facebook etc .
Thanks
The easiest would be to manually disable every app you can. Usually only the ore installed apps, minus the system, take space and ram. Wouldnt mess around with Samsung system apps, since you will lose functionality.
Wouldn't be the easiest but arguably the best, would be going the adb route,
Which allows you to Uninstall by the package.
I.e. https://play.google.com/store/apps/details?id=com.catchingnow.icebox
You can try this app also.
○○○○○○
I know you said non root.
I swear I would root my snapdragon tmobile version if it was possible. I will continue to hope.
enable usb debug and use this tool
[TOOL] ADB AppControl 1.8.0 🚀 Ultimate App Manager & Debloat Tool + Tweaks
ADB AppControl 🚀 Root is not required. Works with any Android device. Can do almost everything you dreamed about with applications. ADB AppControl - the desktop program, that will allow you to easily manage applications on your android device...
forum.xda-developers.com
Sheetzie03 said:
Wouldn't be the easiest but arguably the best, would be going the adb route,
Which allows you to Uninstall by the package.
I.e. https://play.google.com/store/apps/details?id=com.catchingnow.icebox
You can try this app also.
○○○○○○
I know you said non root.
I swear I would root my snapdragon tmobile version if it was possible. I will continue to hope.
Click to expand...
Click to collapse
Thanks, but I dont want to root. Previously on non Samsung phones I rooted my phone from first day, but here dont want to loose Knox,warranty also it is hard to sell if it is rooted and unlocked
Fytdyh said:
The easiest would be to manually disable every app you can. Usually only the ore installed apps, minus the system, take space and ram. Wouldnt mess around with Samsung system apps, since you will lose functionality.
Click to expand...
Click to collapse
Is there a list of apps, services etc which are safe to delete,disable ?
marko94 said:
Thanks, but I dont want to root. Previously on non Samsung phones I rooted my phone from first day, but here dont want to loose Knox,warranty also it is hard to sell if it is rooted and unlocked
Is there a list of apps, services etc which are safe to delete,disable ?
Click to expand...
Click to collapse
[DISCONTINUED] Samsung Galaxy One UI - Optimization Guide
THIS IS A SUGGESTED CONFIGURATION FOR SAMSUNG DEVICES OUT OF SUPPORT/CLOSED I - RECOMMENDED SETTINGS To Start With - Factory Reset before starting optimisations - Factory Reset after every Major update (One UI/Android) - Remove SIM before first...
forum.xda-developers.com
I'm using this guide with some personal changes and so far so good. Just make sure you don't disable or uninstall anything that you use. One example in my case is Bixby routines
You can use adb command:
adb shell pm uninstall -k --user 0 <package_name>
I disabled a lot of things I don't use like dex, windows integration....
Debloating is good for Samsung phones because unnecessary apps are on the phone which slows it down! I'll try it too.
goTouch said:
You can use adb command:
adb shell pm uninstall -k --user 0 <package_name>
I disabled a lot of things I don't use like dex, windows integration....
Click to expand...
Click to collapse
Thanks.. what about the new updates when it is available ? do we need to restore all uninstalled apps before the update or no need ?
marko94 said:
Thanks.. what about the new updates when it is available ? do we need to restore all uninstalled apps before the update or no need ?
Click to expand...
Click to collapse
No
you dont need to restore anything
but every stuff you remove will restored after factory reset
pitelasssss said:
No
you dont need to restore anything
but every stuff you remove will restored after factory reset
Click to expand...
Click to collapse
It is just an adb command to disable a package for the current user. You can enable again with:
adb shell cmd package install-existing <package_name>
goTouch said:
It is just an adb command to disable a package for the current user. You can enable again with:
adb shell cmd package install-existing <package_name>
Click to expand...
Click to collapse
use adb debloat tool
better than that
Releases · 0x192/universal-android-debloater
Cross-platform GUI written in Rust using ADB to debloat non-rooted android devices. Improve your privacy, the security and battery life of your device. - 0x192/universal-android-debloater
github.com
Open source as well.
marko94 said:
Hi all,
what is the easiest and best way to debloat and optimize S22+. For non rooted users ofc
I dont need all Samsung apps, Facebook etc .
Thanks
Click to expand...
Click to collapse
You mean you've never heard of package disabler pro, u don't have to root ur phone ,go to www.packagedisabler.com, pay the little fee and disable all bloatware, do not buy from the play store, go to their website!! Google play store doesn't offer it anymore anyway I believe!!
skiku said:
[DISCONTINUED] Samsung Galaxy One UI - Optimization Guide
THIS IS A SUGGESTED CONFIGURATION FOR SAMSUNG DEVICES OUT OF SUPPORT/CLOSED I - RECOMMENDED SETTINGS To Start With - Factory Reset before starting optimisations - Factory Reset after every Major update (One UI/Android) - Remove SIM before first...
forum.xda-developers.com
I'm using this guide with some personal changes and so far so good. Just make sure you don't disable or uninstall anything that you use. One example in my case is Bixby routines
Click to expand...
Click to collapse
www.packagedisabler.com ,no root,disable all bloatware, no desktop required, 3 or 4 dollars for the app,I can't remember, exactly how much!!
just mean plain S22 U.S. version
maypo123 said:
just mean plain S22 U.S. version
Click to expand...
Click to collapse
I don't understand your question mayo,I have the s22 plus,but package disabler works on any s22, if that is what u mean, you'll have to be more specific!
Thanks Shirtytrip
Hi guys is there any list what is safe to debloat galaxy s22 plus?
It is quite hard to know which is a safe app to remove (uninstall/disable) ?
Check with this list https://docs.google.com/spreadsheets/u/0/d/12jEGQftFUL3vAI03X0Ku1LgoWFQKdwPA_WHuLh_2ics/htmlview
Have to ask google one by one by its package name in order to understand what it is doing for and is necessary?
How To Remove (debloat) Bloatware from Any Galaxy Smartphone Via ADB? - SamsungSFour.Com
How to remove/debloat bloatwares from any Samsung Galaxy Smartphone Via the ADB tool.
www.samsungsfour.com
[TOOL] ADB AppControl 1.8.0 🚀 Ultimate App Manager & Debloat Tool + Tweaks
ADB AppControl 🚀 Root is not required. Works with any Android device. Can do almost everything you dreamed about with applications. ADB AppControl - the desktop program, that will allow you to easily manage applications on your android device...
forum.xda-developers.com

Categories

Resources