Can we uninstall system apps/programs on a T-Mobile V30? - LG V30 Questions & Answers

I know there are threads on using ADB to hide/disable unwanted programs or app, but if i'm correct I uninstalled apps rather than hiding them using this command: pm uninstall -k --user 0. followed by whatever app it was. In the apps list in the system menu it shows several apps as uninstalled. Looking at my apps list, I replaced LG contacts with google contacts.....in the list it shows LG contacts as not installed, same with Facebook installer/manager/LG Keyboard/LG mobile switch. All of these apps, I used the above command to get rid of them or replace them. To set this up I went and downloaded team androids windows platform tools and googles usb drivers. I then enabled debugging, authorized my computer, opened up power shell with admin rights and proceeded to remove apps. Oh, I also used package name viewer from the play store to get the name of the app. So is it possible I DID uninstall these apps rather than hiding them?

They will show back up with a factory reset. So technically no.

JWnSC said:
They will show back up with a factory reset. So technically no.
Click to expand...
Click to collapse
A factory reset resets the phone to its factory default state... So technically these apps are uninstalled.
Sent from my LG-H931 using Tapatalk

Uninstalled for the specific user.. Basically disabled. If truly uninstalled a factory reset would not bring them back. They are still taking up space in /system/apps, /system/priv-app

JWnSC said:
Uninstalled for the specific user.. Basically disabled. If truly uninstalled a factory reset would not bring them back. They are still taking up space in /system/apps, /system/priv-app
Click to expand...
Click to collapse
And as someone mentioned in another thread (maybe you?), it's only affecting the apps in the system partition, not the user partition.
So, without root removing these apps via ADB isn't really saving any space that can be re-used.
Sent from my official open market LG US998 V30+

If you had a model where apps are added after the setup, like the H933, where carrier bloat is pushed as soon as you sign in to the Play Store on the device. With the T-Mobile variant though, the carrier bloat is contained within the system image. You can remove the apps from being installed but they will reinstall with the next update. You will need something to tell you the app names to remove them with ADB. If you have the drivers installed and the correct files. All you have to do is open command prompt in the folder where the ADB files are stored, type "adb shell" and use the "pm uninstall -k --user 0 (app file name)" to remove it from being currently installed. The following two commands I used to remove the Facebook garbage and some other bloat from both of my devices.
pm uninstall -k --user 0 com.facebook.system
pm uninstall -k --user 0 com.facebook.appmanager
pm uninstall -k --user 0 com.lge.ime
pm uninstall -k --user 0 com.android.gallery3d
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.instagram.android
pm uninstall -k --user 0 com.google.android.apps.maps
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.apps.docs.editors.sheets
pm uninstall -k --user 0 com.google.android.apps.docs.editors.slides
pm uninstall -k --user 0 com.google.android.apps.docs.editors.docs
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.google.android.apps.docs
pm uninstall -k --user 0 com.nextradioapp.nextradio
pm uninstall -k --user 0 com.lge.lifetracker

Related

Uninstall system apps without root (vivo bloatware)

You must downloaded adb, and install the adb drivers
1. enable developer options and turn on usb debugging
2. open command prompt > type
Code:
adb devices
if the device is detected by the computer then the name will appear, if it is written unauthorized then press allow on the popup on android screen
3. type
Code:
adb shell
4. type the command
Code:
pm uninstall -k --user 0 $packagename
example, this will uninstall google duo
Code:
pm uninstall -k --user 0 com.google.android.apps.tachyon
some commands that i've run
Code:
pm uninstall -k --user 0 com.google.android.apps.tachyon
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.apps.docs
pm uninstall -k --user 0 com.vivo.browser
pm uninstall -k --user 0 com.android.bbkmusic
pm uninstall -k --user 0 com.vivo.appstore
pm uninstall -k --user 0 com.vivo.easyshare
pm uninstall -k --user 0 com.iqoo.secure
pm uninstall -k --user 0 com.vivo.website
pm uninstall -k --user 0 com.vivo.email
application name from top to bottom:
Code:
google duo
google photos
google play movies
google music
google drive
vivo browser
vivo i music
v app store
easyshare
i manager
vivo.com
vivo email
To find out the packagename of the application you can use Package Names Viewer in your android
This is actually not uninstall the apps but just disable from the system and will not prevent you from getting OTA updates
After factory reset that apps will be enabled again
How to enable it back tho?
I accidentally disabled the vivo gallery app.
Can I disable the default keyboard? Or is it going to create problems when entering passwords using secure mode?
yasutakatakumi said:
I accidentally disabled the vivo gallery app.
Click to expand...
Click to collapse
you can restore it via install apk or factory reset
AsherGZ said:
Can I disable the default keyboard? Or is it going to create problems when entering passwords using secure mode?
Click to expand...
Click to collapse
yes you can, it will not create a problems in secure mode
richardyusan said:
You must downloaded adb, and install the adb drivers
1. enable developer options and turn on usb debugging
2. open command prompt > type
Code:
adb devices
if the device is detected by the computer then the name will appear, if it is written unauthorized then press allow on the popup on android screen
3. type
Code:
adb shell
4. type the command
Code:
pm uninstall -k --user 0 $packagename
example, this will uninstall google duo
Code:
pm uninstall -k --user 0 com.google.android.apps.tachyon
some commands that i've run
Code:
pm uninstall -k --user 0 com.google.android.apps.tachyon
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.apps.docs
pm uninstall -k --user 0 com.vivo.browser
pm uninstall -k --user 0 com.android.bbkmusic
pm uninstall -k --user 0 com.vivo.appstore
pm uninstall -k --user 0 com.vivo.easyshare
pm uninstall -k --user 0 com.iqoo.secure
pm uninstall -k --user 0 com.vivo.website
pm uninstall -k --user 0 com.vivo.email
application name from top to bottom:
Code:
google duo
google photos
google play movies
google music
google drive
vivo browser
vivo i music
v app store
easyshare
i manager
vivo.com
vivo email
To find out the packagename of the application you can use Package Names Viewer in your android
This is actually not uninstall the apps but just disable from the system and will not prevent you from getting OTA updates
After factory reset that apps will be enabled again
Click to expand...
Click to collapse
Do you have a tutorial vieo, I'm afraid there will be an error
Any news or ideas how to root the Vivo v9??
Russel Got stucked said:
Any news or ideas how to root the Vivo v9??
Click to expand...
Click to collapse
forget about it, other phones from vivo even not able to root after 1 year since it's release
****! Made the worst decision buying this phone. Now how the hell do i get rid of it, so frustrated
AsherGZ said:
Can I disable the default keyboard? Or is it going to create problems when entering passwords using secure mode?
Click to expand...
Click to collapse
For that you dont need to try out "adb " commands.
Just download Gboard from playstore. After that Go into
Settings > Language and Input > "Enable" Gboard.
Choose Input method> Gboard - multilingual Typing
Go to "More" under settings> applications > Default app settings > Input method > Gboard
If you like to use "CTRL" "ALT" "Shift" etc type of keyboard, then you can download "Hackers Keyboard" or any other keyboard of your choosing.
I have disabled few apps by this process.
I had disabled vivo store app through this process but now I want to re enable it but I am not able to get it back kindly provide me the latest APK of vivo store or any other process to get it back?
atul0000 said:
I had disabled vivo store app ...
Click to expand...
Click to collapse
I know it might be too late, but better late than never
why uninstalling bloatware hasn't boosted my phone's performance?
thought that uninstalling bloat ware might boost my phone's performance so i ended up uninstalling every app that i dont use ( including creepy wisdom engine and touchpal, replaced with gboard) there's even no RAM consumption in the background . but phone still sucks .......
AsherGZ said:
Can I disable the default keyboard? Or is it going to create problems when entering passwords using secure mode?
Click to expand...
Click to collapse
Yap u can... but batter beware... if some how 3rd party keyboads cresh or stop working then u have to hard reset device so .. this before step..
Hoe to root vivo v9
Thanks, Links for ADB download?
Hi,
Thanks richard yusan for a detailed guide. Am totally new to the Vivo forum. Could you please indicate where to download a good copy of adb drivers for the Vivo from.
Although doing my research I came across this post in another forum https://www.cyanogenmods.org/how-to-install-twrp-and-root-the-vivo-z1-pro/ but didn't want to try it on without knowledge of the systems first.
Additionally, I realised much of the terms used in the Funtouch OS are different, and one wrong choice in the middle of the path somewhere has the potential to leave you stuck (If it doesn't brick the phone).
For example, instead of what the forum lists as
Settings>>System>>About Phone>>Tap on Build Number 7 times. Now you need to go back to Settings>>Advanced Settings>>Developer Options>>enable USB Debugging.
What I could get was the following
Settings>>More Settings>>About Phone>>Tap on Software Version 7 times. Now you need to go back to Settings>>More Settings>>Developer Options>>enable USB Debugging AND ALSO Developer Options
Maybe this is all very intuitive, but like I said, for a Noobie like me, even this is a steep climb in knowledge
richardyusan said:
You must downloaded adb, and install the adb drivers
1. enable developer options and turn on usb debugging
2. open command prompt > type
Code:
adb devices
if the device is detected by the computer then the name will appear, if it is written unauthorized then press allow on the popup on android screen
3. type
Code:
adb shell
4. type the command
Code:
pm uninstall -k --user 0 $packagename
example, this will uninstall google duo
Code:
pm uninstall -k --user 0 com.google.android.apps.tachyon
some commands that i've run
Code:
pm uninstall -k --user 0 com.google.android.apps.tachyon
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.apps.docs
pm uninstall -k --user 0 com.vivo.browser
pm uninstall -k --user 0 com.android.bbkmusic
pm uninstall -k --user 0 com.vivo.appstore
pm uninstall -k --user 0 com.vivo.easyshare
pm uninstall -k --user 0 com.iqoo.secure
pm uninstall -k --user 0 com.vivo.website
pm uninstall -k --user 0 com.vivo.email
application name from top to bottom:
Code:
google duo
google photos
google play movies
google music
google drive
vivo browser
vivo i music
v app store
easyshare
i manager
vivo.com
vivo email
To find out the packagename of the application you can use Package Names Viewer in your android
This is actually not uninstall the apps but just disable from the system and will not prevent you from getting OTA updates
After factory reset that apps will be enabled again
Click to expand...
Click to collapse
On iQOO phones there's another important app you need to disable to get notifications:
- com.vivo.appfilter
it's a complement of iManager (aka com.iqoo.secure)
Sir list of devices no detected inspite of enabled developer option and usb debugging .
Please help me via email immediately I will wait for your help sir.
---------- Post added at 09:01 PM ---------- Previous post was at 09:00 PM ----------
[/COLOR]
bayron_olaff said:
On iQOO phones there's another important app you need to disable to get notifications:
- com.vivo.appfilter
it's a complement of iManager (aka com.iqoo.secure)
Click to expand...
Click to collapse
Did you run into any bugs after uninstalling this?
device not found on vivo y12
what went wrong ?
tonyjaimy said:
device not found on vivo y12
what went wrong ?
Click to expand...
Click to collapse
That maybe because of missing device drivers.

Debloating Mi 9t

Just to share with you guys, might help someone, I've succefully removed with no issue everything except the listed belows apps, using Xiaomi ADB Fastboot Tools:
https://imgur.com/jRpFAoD
I repeat these are the only app STILL INSTALLED on my Mi9t, im running MIUI Global 11.0.2
you can remove file explorer but it will not show the ringtones like it always does. but you can search it in the system, media ringontes with another explorer
mi drop, every google APP EXCEPT Velvet the google app not sure if still cause bootloops in xiaomi.
this in case people don't have root
after root just uninstall with Link2sd or any other app to remove
pm uninstall -k --user 0 com.mi.android.globalpersonalassistant
pm uninstall -k --user 0 com.xiaomi.mipicks
pm uninstall -k --user 0 com.android.browser
pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.miui.compass
pm uninstall -k --user 0 com.google.android.apps.docs
pm uninstall -k --user 0 com.google.android.apps.tachyon
pm uninstall -k --user 0 com.facebook.katana
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.apps.maps
pm uninstall -k --user 0 com.miui.videoplayer
pm uninstall -k --user 0 com.miui.player
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.miui.yellowpage
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.android.stk
pm uninstall -k --user 0 com.google.android.inputmethod.latin (after replace keyboard)
pm uninstall -k --user 0 com.android.cellbroadcastreceiver
pm uninstall -k --user 0 com.android.globalpersonalassistant
pm uninstall -k --user 0 com.xiaomi.glgm
pm uninstall -k --user 0 com.google.android.tts
pm uninstall -k --user 0 com.mipay.wallet.in
What Jctatis says, alternatively you can delete the apps by ADB.
In additional settings open developer options and turn on USB debugging.
Then on your computer type adb devices to see if your computer can connect and adb shell to type commands in your device. Then type the commands Jctatis listed.
Will this affect the software updates later? Just like rooting can cause a phone to stop receiving OTA updates.
tibby87 said:
Will this affect the software updates later? Just like rooting can cause a phone to stop receiving OTA updates.
Click to expand...
Click to collapse
Nah.
I'd keep the stock video player if you want to play HDR videos. It's the only app that I found that can play them properly, it can even play UHD bluray rips. VLC doesn't work as well. It's not a bad app.
Also removing yellowpages disables access to your contacts from the phone app. You probably want that. If not you probably want to replace the phone app as well. You can use google phone, it can be found on xda as apk, not play store.
IMO, just remove the obvious apps and don't touch services and other less obvious things that might be tied to something system related. All of it is reversible so just experiment.
HockeyLan said:
I'd keep the stock video player if you want to play HDR videos. It's the only app that I found that can play them properly, it can even play UHD bluray rips. VLC doesn't work as well. It's not a bad app.
Also removing yellowpages disables access to your contacts from the phone app. You probably want that. If not you probably want to replace the phone app as well. You can use google phone, it can be found on xda as apk, not play store.
IMO, just remove the obvious apps and don't touch services and other less obvious things that might be tied to something system related. All of it is reversible so just experiment.
Click to expand...
Click to collapse
I can access contacts from the phone app anyway. Thank you about the video player tip, didnt know that!
I can confirm that removing yellow pages doesn't break contacts access from phone app
I debloated quite a few apps without any problems.
The only thing that's missing the "Skip Swipe Screen" option and the ability to change lockscreen wallpaper.
Do you guys know which system app needed for these two operations?
Thanks in advance!
raykewl said:
I debloated quite a few apps without any problems.
The only thing that's missing the "Skip Swipe Screen" option and the ability to change lockscreen wallpaper.
Do you guys know which system app needed for these two operations?
Thanks in advance!
Click to expand...
Click to collapse
you can change your lockscreen with the Themes app. Otherwise I believe you need the Mi Wallpaper not uninstalled.
Adding to the already great list!
definitely more bloatware:
pm uninstall -k --user 0 com.facebook.services
pm uninstall -k --user 0 com.facebook.system
pm uninstall -k --user 0 com.facebook.appmanager
not that bloatware but I prefer my f-droid alternatives:
pm uninstall -k --user 0 com.xiaomi.midrop
pm uninstall -k --user 0 com.miui.calculator
pm uninstall -k --user 0 com.miui.weather2
pm uninstall -k --user 0 com.miui.notes
pm uninstall -k --user 0 com.google.ar.lens
pm uninstall -k --user 0 com.android.calendar
I'm down to 228 packages, not great, but at least my drawer isn't cluttered .
malinusss said:
Adding to the already great list!
definitely more bloatware:
pm uninstall -k --user 0 com.facebook.services
pm uninstall -k --user 0 com.facebook.system
pm uninstall -k --user 0 com.facebook.appmanager
not that bloatware but I prefer my f-droid alternatives:
pm uninstall -k --user 0 com.xiaomi.midrop
pm uninstall -k --user 0 com.miui.calculator
pm uninstall -k --user 0 com.miui.weather2
pm uninstall -k --user 0 com.miui.notes
pm uninstall -k --user 0 com.google.ar.lens
pm uninstall -k --user 0 com.android.calendar
I'm down to 228 packages, not great, but at least my drawer isn't cluttered .
Click to expand...
Click to collapse
Not great, not terrible.
Jctatis said:
EXCEPT Velvet the google app not sure if still cause bootloops in xiaomi.
Click to expand...
Click to collapse
I confirm that removing the velvet apk does not create any problems on MIUI Global 10.3.12
Thanks for a great list!
Sent from my Mi 9T using XDA Labs
Does anyone know which APK is the messaging app and if it's safe to remove? I can see extra SMS but it's not it. Also if you check the app's info it says "com.android.mms" but I don't see it in the list. Judging by the name it doesn't seem to be a MiUI file though.
Thanks!
elbagel said:
Does anyone know which APK is the messaging app and if it's safe to remove? I can see extra SMS but it's not it. Also if you check the app's info it says "com.android.mms" but I don't see it in the list. Judging by the name it doesn't seem to be a MiUI file though.
Thanks!
Click to expand...
Click to collapse
I have completly uninstalled the com.android.mms a couple of days ago, and using the google messages app instead. No issues at all.
Edit:
And to answer your question com.android.mms IS the messaging app/sms app, and yes it seems to be safe to remove/replace.
Megabliss said:
I confirm that removing the velvet apk does not create any problems on MIUI Global 10.3.12
Thanks for a great list!
Click to expand...
Click to collapse
Thank for the info oh I remember back miui 9 or 8 when trying to do so bootloop mi 3 and Rn4x
---------- Post added at 05:35 PM ---------- Previous post was at 05:34 PM ----------
shaon121 said:
I can confirm that removing yellow pages doesn't break contacts access from phone app
Click to expand...
Click to collapse
True that I had been removing yellow pages since mi 3, rn4x rn5 rn7 and mi 9t
malinusss said:
I have completly uninstalled the com.android.mms a couple of days ago, and using the google messages app instead. No issues at all.
Edit:
And to answer your question com.android.mms IS the messaging app/sms app, and yes it seems to be safe to remove/replace.
Click to expand...
Click to collapse
Thank you for the reply!
How do you remove com.android.mms? I'm using Xiaomi ADB Fastboot Tools and I don't see it in the list of apps that can be removed.
elbagel said:
Thank you for the reply!
How do you remove com.android.mms? I'm using Xiaomi ADB Fastboot Tools and I don't see it in the list of apps that can be removed.
Click to expand...
Click to collapse
Huh, which MIUI are you on? On my go MIUI global 10.3.11 it was visible and removable trough adb, no root.
Maybe you just missed it, there are like 200+ packages on a phone like this...
Try:
Code:
pm list packages | grep mms
This is my version https://github.com/ramalhovfc/miui10-debloater
HockeyLan said:
I'd keep the stock video player if you want to play HDR videos. It's the only app that I found that can play them properly, it can even play UHD bluray rips. VLC doesn't work as well. It's not a bad app.
Also removing yellowpages disables access to your contacts from the phone app. You probably want that. If not you probably want to replace the phone app as well. You can use google phone, it can be found on xda as apk, not play store.
IMO, just remove the obvious apps and don't touch services and other less obvious things that might be tied to something system related. All of it is reversible so just experiment.
Click to expand...
Click to collapse
What if, I have accidentally debloated the stock video player, is there anyway we can re-install it?

[GUIDE] - Remove Huawei Bloatware Without Root Access - using ADB & USB Debugging

Hy all,
As many users asked me what bloatware i removed from my phone and at @Andrei Morar special request , I decided to create a thread with all the packages and their relative details about how each package listed here works on EMUI system for helping all of you who want to safely slim down the number of not used apps which are running in background alongside with some services preinstalled on phone that are not usable, for me and maybe for some others. I leave it to you to take the final choice about what to do with a package, remove it or not, and if you have other packages that you think it’s worthy to keep or remove, please comment bellow and i’ll add or remove that package.
Remember that those applications truly aren’t being fully uninstalled from the device, they are just being uninstalled for the current user (user 0 is the default / main user of the phone). That’s why, if you omit the “–user 0” and “-k” part of the uninstall command, the command won’t work. These two flags respectively specify that the system app will only be uninstalled for the current user (and not all users, which is something that requires root access) and that the cache / data of the system application will be preserved (which can’t be removed without root access). Therefore, even if you “uninstall” a system application using this method, you can still receive official OTA updates from your carrier or OEM.
If something does go wrong, you can always perform a factory reset to bring things back to the way they were. However, there’s an even easier way to bring back an app you uninstalled as this : open cmd-here.exe from C:\Program Files (x86)\Minimal ADB and Fastboot and enter the following commands: adb shell cmd package install-existing <name of package you wish to reinstall>.
IF you want to remove ads and you have no root or don't wan't to block your VPN or use Blokada, you can use my trick, it works on both WI-FI and mobile networks, as good as Adaway is doing :
Just set: Settings > Wi-Fi & Internet > Private DNS > dns.adguard.com and you are good without any additional app.
Here is the quick & easy guide for all:
1. Download latest Minimal ADB and Fastboot from here - thanks go to @shimp208 for providing this great tool - https://forum.xda-developers.com/showthread.php?t=2317790
2. Enable USB debugging from developer options:
- Step 1: go to Settings
- Step 2: find and open "System" option
- Step 3: select "About phone"
- Step 4: tap "Build number" at least seven times and you will see a prompt with “You are now a Developer “. Then go to developer options and enable USB debugging (it's a MUST DO)
3. Connect your phone to your computer and press YES if it asks you to trust the PC
4. Launch cmd-here.exe from C:\Program Files (x86)\Minimal ADB and Fastboot and enter the following commands followed by Enter:
- adb devices (make sure your device appears in the list)
- adb shell
- pm uninstall -k --user 0 + the app you want to remove from the list below
- for restarting the device after succesfully removed unwanted package, type reboot and hit Enter, then your device will restart and remove the package from user.
For example:
This command will delete Huawei Mobile Services (including Huawei ID) app:
pm uninstall -k --user 0 com.huawei.hwid
My list of removable packages & explanations :
com.google.android.googlequicksearchbox - Google Assistant
com.google.android.apps.books - Google Books
com.google.android.apps.docs.editors.docs – Google Docs
com.google.android.apps.docs.editors.sheets – Google Sheets
com.google.android.apps.docs.editors.slides – Google Slides
com.google.android.apps.cloudprint - Cloud print
com.google.android.apps.docs - Google Drive
com.google.android.apps.mapps - Google Maps app
com.google.android.apps.photos - Google Photos
com.google.android.apps.tachyon - Google Duo
com.google.android.apps.magazines – Google News
com.google.android.feedback – Google Feedback
com.google.android.keep – Google Keep (Notes and Lists)
com.google.android.marvin.talkback – Android Accessibility Suite
com.google.android.music – Google Music
com.google.android.play.games - Google Play Games app
com.google.android.projection.gearhead - Android Auto
com.google.android.talk - Hangouts
com.google.android.videos – Google Play Movies
com.google.android.youtube – Youtube (i use YTB Vanced)
com.google.android.apps.youtube.music - YouTube Musi
com.google.android.googlequicksearchbox - Google Search
com.amazon.appmanager – Amazon app
com.amazon.mShop.android.shopping – Amazon app related
com.booking – Booking app
com.android.email - Stock Huawei Email ( i use Outlook)
com.android.bookmarkprovider – Preseted bookmarks for Chrome
com.android.chrome – Chrome browser (i use Brave Browser)
com.android.hwmirror – Mirror app
com.android.partnerbrowsercustomizations.tmobile – Browser settings T-mobile
com.android.providers.partnerbookmarks – OEM preseted bookmarks for Chrome
com.android.partnerbrowsercustomizations – SIM preseted bookmarks for Chrome
com.android.storagemanager - Is the interface to the systems storage service (i use file explorer)
com.android.stk - SIM Application Toolkit (never used it)
com.baidu.input_huawei - Huawei chinese stock input keyboard
com.huawei.appmarket - Huawei Market app (if you don’t plan to update any Huawei app)
com.huawei.phoneservice - HiCare app
com.huawei.hwid - Huawei Mobile Services (including Huawei ID) app
com.huawei.android.chr - HwChrService
com.huawei.android.hwpay - HuaweiI HiPayment
com.huawei.android.remotecontroller – Remote control
com.huawei.android.tips – Huawei Tips
com.huawei.browser – Huawei Browser
com.huawei.compass – Huawei Compass
com.huawei.contactscamcard – Huawei scan business card
com.huawei.health - Huawei Health app
com.huawei.hwapplet - Huawei system Services
com.huawei.hifolder - Huawei AppAdvisor
com.huawei.KoBackup - Huawei Backup
com.huawei.parentcontrol – Parental controls
com.huawei.search - HiSearch
com.huawei.tips – Huawei Tips
com.huawei.vassistant – Huawei Voice Assistant (i preffer Google)
com.huawei.wallet – Huawei Wallet
com.huawei.himovie.overseas – Huawei movie app (i use VLC)
com.android.soundrecorder – Sound Recorder
com.ironsource.appcloud.oobe.huawei - Download Essential Apps
com.facebook.appmanager - Facebook
com.facebook.system - Facebook
com.facebook.katana - Facebook
com.facebook.services - Facebook
com.hicloud.android.clone – Clone device
com.microsoft.translator – Microsoft Translator
com.swiftkey.swiftkeyconfigurator - SwiftKey factory settings
com.touchtype.swiftkey - SwiftKey Keyboard (i use Gboard)
com.example.android.notepad - Notepad app
com.orange.update - ORANGE APP
com.android.mediacenter - Huawei Stock Music App
com.huawei.appmarket - Huawei Stock Gallery App
com.huawei.android.launcher - removes Huawei launcher app and it seems to disable recent apps (thanks @markvd90 & @KKYASIR for headsup). JUST don’t remove if you don’t have a custom launcher installed allready and you use Recent Apps
settings put secure ui_night_mode 2 - enable system-wide dark mode
settings put secure ui_night_mode 1 – disable system-wide dark mode
And here you have all the apps above with commands to remove through ADB:
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.google.android.apps.books
pm uninstall -k --user 0 com.google.android.apps.docs.editors.docs
pm uninstall -k --user 0 com.google.android.apps.docs.editors.sheets
pm uninstall -k --user 0 com.google.android.apps.docs.editors.slides
pm uninstall -k --user 0 com.google.android.apps.cloudprint
pm uninstall -k --user 0 com.google.android.apps.docs
pm uninstall -k --user 0 com.google.android.apps.mapps
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.apps.tachyon
pm uninstall -k --user 0 com.google.android.apps.magazines
pm uninstall -k --user 0 com.google.android.feedback
pm uninstall -k --user 0 com.google.android.keep
pm uninstall -k --user 0 com.google.android.marvin.talkback
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.play.games
pm uninstall -k --user 0 com.google.android.projection.gearhead
pm uninstall -k --user 0 com.google.android.talk
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.google.android.apps.youtube.music
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.amazon.appmanager
pm uninstall -k --user 0 com.amazon.mShop.android.shopping
pm uninstall -k --user 0 com.booking
pm uninstall -k --user 0 com.android.email
pm uninstall -k --user 0 com.android.bookmarkprovider
pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.android.hwmirror
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.tmobile
pm uninstall -k --user 0 com.android.providers.partnerbookmarks
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations
pm uninstall -k --user 0 com.android.storagemanager
pm uninstall -k --user 0 com.android.stk
pm uninstall -k --user 0 com.baidu.input_huawei
pm uninstall -k --user 0 com.huawei.appmarket
pm uninstall -k --user 0 com.huawei.phoneservice
pm uninstall -k --user 0 com.huawei.hwid
pm uninstall -k --user 0 com.huawei.android.chr
pm uninstall -k --user 0 com.huawei.android.hwpay
pm uninstall -k --user 0 com.huawei.android.remotecontroller
pm uninstall -k --user 0 com.huawei.android.tips
pm uninstall -k --user 0 com.huawei.browser
pm uninstall -k --user 0 com.huawei.compass
pm uninstall -k --user 0 com.huawei.contactscamcard
pm uninstall -k --user 0 com.huawei.health
pm uninstall -k --user 0 com.huawei.hwapplet
pm uninstall -k --user 0 com.huawei.hifolder
pm uninstall -k --user 0 com.huawei.KoBackup
pm uninstall -k --user 0 com.huawei.parentcontrol
pm uninstall -k --user 0 com.huawei.search
pm uninstall -k --user 0 com.huawei.tips
pm uninstall -k --user 0 com.huawei.vassistant
pm uninstall -k --user 0 com.huawei.wallet
pm uninstall -k --user 0 com.huawei.himovie.overseas
pm uninstall -k --user 0 com.android.soundrecorder
pm uninstall -k --user 0 com.ironsource.appcloud.oobe.huawei
pm uninstall -k --user 0 com.facebook.appmanager
pm uninstall -k --user 0 com.facebook.system
pm uninstall -k --user 0 com.facebook.katana
pm uninstall -k --user 0 com.facebook.services
pm uninstall -k --user 0 com.hicloud.android.clone
pm uninstall -k --user 0 com.microsoft.translator
pm uninstall -k --user 0 com.swiftkey.swiftkeyconfigurator
pm uninstall -k --user 0 com.touchtype.swiftkey
pm uninstall -k --user 0 com.example.android.notepad
pm uninstall -k --user 0 com.orange.update
pm uninstall -k --user 0 com.android.mediacenter
pm uninstall -k --user 0 com.huawei.appmarket
pm uninstall -k --user 0 com.huawei.android.launcher
settings put secure ui_night_mode 2
settings put secure ui_night_mode 1
reboot
This guide has been used by me on Mate 10 Pro, Mate 20 Pro, P20 Pro and P30. Try it out on your device and let me know how it goes in the comments below!
Appreciate my work? Let me know by paypal.me a coffee clicking on Donate to Me or hit Thanks!​
Mine
SilviuO said:
Mine
Click to expand...
Click to collapse
Thank you so much for this little piece of gold of a guide!
I will do this after receiving the stable build of Emui 10. Hopefully this happens in 2019
One quick question: after removing any of the preinstalled apps do they automatically get reinstalled after the first security update? What about major updates like Emui 11?
Andrei Morar said:
Thank you so much for this little piece of gold of a guide!
I will do this after receiving the stable build of Emui 10. Hopefully this happens in 2019
One quick question: after removing any of the preinstalled apps do they automatically get reinstalled after the first security update? What about major updates like Emui 11?
Click to expand...
Click to collapse
NO, they will get back after factory reset or if you manually reinstall any of it
SilviuO said:
NO, they will get back after factory reset or if you manually reinstall any of it
Click to expand...
Click to collapse
How much of an impact on your phone's battery life and performance does removing all the apps in your removal list has? I'm interested to know that if I remove all the preinstalled apps I will get a noticeable improvement in battery life.
Andrei Morar said:
How much of an impact on your phone's battery life and performance does removing all the apps in your removal list has? I'm interested to know that if I remove all the preinstalled apps I will get a noticeable improvement in battery life.
Click to expand...
Click to collapse
I don't know for sure, because i've done this removal every single phone i had right of the box, just after set up . But you will have for sure better battery life because some of those apps can't be set on battery settings (ex. Chrome can't be stopped been used on background and some other apps) to stop using battery in backgroung or start once you restart your device. BUT be aware what you remove, make sure to check if you use any of them before removal.
For YouTube i recommend Youtube vanced (no ads and black interface) and for Messenger and Facebook (both without ads or any other unusefull stuffs) i recommend those apps from here
SilviuO said:
I don't know for sure, because i've done this removal every single phone i had right of the box, just after set up . But you will have for sure better battery life because some of those apps can't be set on battery settings (ex. Chrome can't be stopped been used on background and some other apps) to stop using battery in backgroung or start once you restart your device. BUT be aware what you remove, make sure to check if you use any of them before removal.
For YouTube i recommend Youtube vanced (no ads and black interface) and for Messenger and Facebook (both without ads or any other unusefull stuffs) i recommend those apps from here
Click to expand...
Click to collapse
Already use Youtube vanced. How are the modded Facebook and Messenger apps? Are they lacking any features/options of the official versions? Do they have an OK design?
Andrei Morar said:
Already use Youtube vanced. How are the modded Facebook and Messenger apps? Are they lacking any features/options of the official versions? Do they have an OK design?
Click to expand...
Click to collapse
They are the same, because they are the official ones, just mooded. You can see what is different reading from here List of mods (latest version):.
If you wanna try them, here are the links for latest:
Facebook app - https://androidfilehost.com/?fid=4349826312261622761
Facebook Messenger app - https://androidfilehost.com/?fid=4349826312261642082
SilviuO said:
They are the same, because they are the official ones, just mooded. You can see what is different reading from here List of mods (latest version):.
If you wanna try them, here are the links for latest:
Facebook app - https://androidfilehost.com/?fid=4349826312261622761
Facebook Messenger app - https://androidfilehost.com/?fid=4349826312261642082
Click to expand...
Click to collapse
Big, big thank you! I was really looking forward to a Fb and Messenger variant without ads.
Andrei Morar said:
Big, big thank you! I was really looking forward to a Fb and Messenger variant without ads.
Click to expand...
Click to collapse
As usual , glad i could help you and some others, maybe
SilviuO said:
As usual , glad i could help you and some others, maybe
Click to expand...
Click to collapse
One last question: Will these get replaced by the standard PlayStore versions after an update or they remain as they are now?
Andrei Morar said:
One last question: Will these get replaced by the standard PlayStore versions after an update or they remain as they are now?
Click to expand...
Click to collapse
No, they are separatley signed apk's and in my case (i'm sure yours and others) don't receive PlayStore notifications to update or any other. PlayStore confirms they are installed and give you option to Uninstall just like in my bellow SS. They don't appear on your installed app list from PlayStore
SilviuO said:
No, they are separatley signed apk's and in my case (i'm sure yours and others) don't receive PlayStore notifications to update or any other. PlayStore confirms they are installed and give you option to Uninstall just like in my bellow SS. They don't appear on your installed app list from PlayStore
Click to expand...
Click to collapse
Just perfect!
Andrei Morar said:
Just perfect!
Click to expand...
Click to collapse
Anyway, keep an eye on that thread, evilwombat updates frequently those apps
I used your list, but for some reason my recent apps stopped working. Did you experience anything like this? I'm on EMUI10 if that matters
markvd90 said:
I used your list, but for some reason my recent apps stopped working. Did you experience anything like this? I'm on EMUI10 if that matters
Click to expand...
Click to collapse
Hi m8, it's strange, i don't have an issue with recent apps. Still shows up when slide my finger upwards starting from the bottom of my screen and tested with on screen keys too...
SilviuO said:
Hi m8, it's strange, i don't have an issue with recent apps. Still shows up when slide my finger upwards starting from the bottom of my screen and tested with on screen keys too...
Click to expand...
Click to collapse
You also on EMUI 10?
I think it's because the launcher got disabled.
markvd90 said:
You also on EMUI 10?
I think it's because the launcher got disabled.
Click to expand...
Click to collapse
Yes, i'm on EMUI 10, BUT i have Huawei launcher installed and using. So it seems that uninstalling Huawei launcher also disable recent apps on Huawei. I will post this info in OP. Try reinstalling it through ADB, on EMUI 9.1 worked reinstalling some apps or search it on Huawei apps app if you didn't removed it using ADB.
SilviuO said:
Yes, i'm on EMUI 10, BUT i have Huawei launcher installed and using. So it seems that uninstalling Huawei launcher also disable recent apps on Huawei. I will post this info in OP. Try reinstalling it through ADB, on EMUI 9.1 worked reinstalling some apps or search it on Huawei apps app if you didn't removed it using ADB.
Click to expand...
Click to collapse
Yeah, just did a factory reset.
Can I ask why you use uninstall instead of pm disable?
Is the uninstall more effective?
markvd90 said:
Yeah, just did a factory reset.
Can I ask why you use uninstall instead of pm disable?
Is the uninstall more effective?
Click to expand...
Click to collapse
uninstall also frees up the space used by apps and also it makes sure it won't get auto re-enabled by system. And one more thing, If i just disable them i observed that they are still consuming RAM (according to Developer Options >> Memory).

[GUIDE] DeGoogle & debloat M30s and install MicroG

This guide explains how to debloat M30s (or any other samsung device or any other device) and also deGoogle it by removing most of google invasive crap. (yes, GPlay services is also removed).​Play store, Google app and other crap is also removed from system, so if you want to use them, install them as user app. The installation for play store is different, and it is explained below.
Check my Post on reddit for more up to date info and clear instructions HERE
When we remove Gplay services, many apps and services stop working . Many apps will give error but still work (like maps and telegram and whatsapp). Play store will definitely not work and many apps that use push notification through Gplay services (most of them) will not be able to do so. In my case Uber, ola or any other ride app was also not working and was crashing constantly. Paytm will also not work without play services. And on top of that many apps that use location might not behave properly.
Whoosh! those are a lot of problems for uninstalling play services. So, why would anyone want to do that?
Simply put it, Google is an Advertising company. No it is not a company that sells product, i mean yes it sells products and earns from them BUT more than 60% of their revenue comes from Ads that they serve you. And yes, google is the biggest Ad company in the world with more than 80% of ad share (i may be wrong about the %, feel free to search yourself). So obviously they want ta make money out of your data (by selling it) and to do that what better way than to install spyware on world's largest mobile OS.
Google play services record your every action, tracking every app that you opened and everything you do. That data remains with google and they sell it to 3rd parties (and you agreed to it when you made Google account and setup your android device. Remember Clicking on "I AGREE"?).
Here i will not discuss how invasive it is. A simple Web search with "google play services tracking" will give you much more information. (and please do search it, i beg you) (Pro Tip: reddit has best answers, so explore reddit links from search)
Here is a good one explaining things
And Gplay services Eat a LOT of battery by constantly Running in background. So if you want better battery, remove it
So you have decided to degoogle your phone (and debloat it). What to do about all those errors after removing play services?
Here Comes MicroG. microG is an Open Source replacement for Google Play Services.
"MicroG is a free-as-in-freedom re-implementation of Google’s proprietary Android user space apps and libraries.
The linux-based open-source mobile operating system Android is not only the most popular mobile operating system in the world, it’s also on the way to becoming a proprietary operating system. How is that?
While the core operating system is still released as part of the Android Open Source Project, the majority of core apps are not. It gets worse: More and more libraries and APIs are only available on phones that run various Google apps pre-installed, effectively locking third-party apps to the Google ecosystem. For these reasons Android is described as being a “look but don’t touch” kind of open.
At this point, several popular open-source applications already require some of Google’s proprietary libraries to be installed. Increasing demand in the free software community in addition to severe problems in Google’s proprietary software discovered by the Android modding community, have led to the development of a free software clone of Google’s proprietary core libraries and applications - the microG Project was born.
Although most microG components are far from complete, users are amazed by the results. Free software users got extended application support, privacy-caring users can reduce or monitor data that is sent to Google and especially older phones can expect some battery life improvements."
(So it basically removes all those errors. Great!)
So, Lets start Degoogling!
Warning: bootloader needs to be unlocked, magisk should be there and twrp should be installed.
NOTE: MAKE FULL NANDROID BACKUP OF YOUR DEVICE BEFORE PROCEEDING BY GOING TO TWRP -> BACKUP -> SELECT ALL . store it in PC or somewhere safe​
Removing google crap
Flash TWRP and install magisk.
We need Signature spoofing in the ROM. Download SmaliPatcher from here and tick all patches, (We are interested in the "signature spoofing" one but all of them are useful) and follow the instructions on its page to install that module. Now your system supports signature spoofing. (I recommend SmaliPatcher even if your rom supports Signature Spoofing so that no issue arises)
Other ways for signature spoofing are given in MicroG wiki here
(IF YOU ARE ON STOCK ROM)
In case you had the Google Play Services previously installed (which Users having stock ROM have), remove all updates and the packages in /system/priv-app of the Google Services (you can use TWRP file manager or any root explorer to delete below packages, just delete the apk files in respective folders):
GmsCore (PrebuiltGmsCore, PrebuiltGmsCorePi, PrebuiltGmsCorePix)
GoogleBackupTransport
GoogleFeedback
GoogleLoginService
GoogleOneTimeInitializer
GooglePartnerSetup
GoogleServicesFramework
Phonesky
SetupWizard
Velvet.
In case you forgot to remove the GmsCore updates, you can manually remove these using adb uninstall com.google.android.gms.
After that, reboot your android device - all privileged GAPPS should be removed. (a bootloop may be caused, but dont worry, just boot into TWRP and follow below steps.)
IF YOU ARE ON CUSTOM ROM-> after flashing rom zip, do not reboot and follow below (DONT FLASH ANY GAPPS)
Make full backup of your device if not made till now​
Installing MicroG
Download Latest "MinMicroG-Standard-XXX.zip" from here
Add "system-" to start of package name (thus making it like "system-MinMicroG-Standard-XXX.zip" ) and copy it in sdcard or internal storage of phone. Now boot into TWRP
flash "system-MinMicroG-Standard-XXX.zip".
OLD METHOD, USE THIS IF ABOVE WONT WORK
Download the following from here
full NanoDroid-xx.xx.xx.xxxxxxx.zip
NanoDroid-setupwizard.zip
NanoDroid-uninstaller.zip (if it causes brick)
Copy below in sdcard or internal storage of phone. Now boot into TWRP
NanoDroid-setupwizard.zip
NanoDroid-uninstaller.zip (if it causes brick)
flash NanoDroid-setupwizard.zip, now an aroma installer is opened. click on next , agree to terms and click next, chose save location "/data/media/0" (you can change this as per your needs but remember this location since here the installer will save 3 files) and click next
now from here onwards you can select yourself according to your needs or follow my tutorial till the end of aroma installer.
you should be on generic settings page, tick 'apps', 'maps apiv1', 'init scrips', 'gnu bash', and 'shell utils'. click next.
in microG page, select "full", next, on f-droid page select "official", next, select all 4 nlpBackends, next, now here select "play store(patrched)" if you want to use Play store (your choice, if you want to degoogle select "Aurora + fake store"), next
now select apps of your choice here, next, on Debloat setup page click next (yeah just skip it), and finally click on create config, next and finish.
Aroma installer Ends now.
Now while in twrp, connect your phone to PC and browse to internal storage (or the location you selected during aroma installer to save files)
the 3 files will be ".nanodroid-overlay", ".nanodroid-setup", ".nanodroid-apps". Copy these to PC and keep them in some place safe. Now open "nanodroid.zip" (that you downloaded earlier) with winRAR or 7zip and drag and drop these 3 files in it. (they should be in root of the zip where "meta-inf" folder is)
now copy NanoDroid-xx.xx.xx.xxxxxxx.zip to your phone and flash it.
now boot into system. if flashing nanodroid causes bootloop, restore from twrp backup that you made (i told you so!).
Configuring MicroG
You need to setup microG , go into microG settings (in app drawer or in settings) and set up everything like:
check results in Self-Check, grant all the missing permissions (by tapping on them)
especially the Battery Optimization item
if Phonesky (= Fake Store or Play Store) lacks signature spoofing permissions head to Settings / Apps / Permissions / Signature Spoofing and grant it
enable Google device registration
enable Google Cloud Messaging (only if you want to receive push messages from your applications)
enable Google SafetyNet, required for applications that utilize SafetyNet, for example Pokémon GO (Currently Broken)
in UnifiedNlp Settings choose all (whichever you've choosen to be installed)
Déjà Vu, Mozilla, Apple, and others (like GSM and WiFi Location Service)
Nominatim as Address lockup backend
after everything is done, reboot
if you installed Play Store open it, setup account and install your apps
Make sure you have all options ticked in self-check of microG settings (except maybe for last one). if not web search it or post it here.
Congratulations, you have successfully removed Gplay services.
ONLY IF YOU HAVE USED OLD METHOD (USING NANODROID)
Updates of nanodroid
Make full backup of your device before update. In case anything happens after update, you can rollback easily​So the nanodroid is updated quite frequently with the apps that come with it. So when you see an updated version of nanodroid on official download page (yeah there are no automatic updates, you have to manually check by going to the download page and download it) download below zips from here
full NanoDroid-xx.xx.xx.xxxxxxx.zip (the updated version)
NanoDroid-uninstaller.zip (the updated version)
* Now open "NanoDroid-xx.xx.xx.xxxxxxx.zip " (updated version) with winRAR or 7zip and drag and drop those 3 files [ ".nanodroid-overlay", ".nanodroid-setup", ".nanodroid-apps".] in it. (just like you did before)
* Now copy NanoDroid-xx.xx.xx.xxxxxxx.zip to your phone and flash it through twrp.
You may need to re-configure microG, so just do it again.
Huge thanks to the below members for the tools.
@santhoosh for twrp
@MaR-V-iN for microG (thank you sir!)
@Setialpha for nanodroid
@FriendlyNeighborhoodShane for MinMicroG
and other ones whom i forgot to add
Now lets de-bloat your device. see post #2
De-bloat M30s
make full backup of /data and /system using twrp before debloat
The following apps are going to be de-bloated from your phone through adb. I cannot find another way to batch uninstall apps on android pie. If you know then please comment it below. PLEASE.
If you want other apps to be added to this list then please comment the package name (like com.xxx.xxxx.xxx or whatever) (not the app name like google app) and what this app does. It would be very helpful for all of us and i am also looking for other packages to add to this list since this is near-least de-bloat which does not break any system functionality.
if you want to remove any app from this list then comment the package name and what that package does. . It would be very helpful for all of us and i am also looking for packages to remove from this list that break system functionality.
APPS
android.autoinstalls.config.samsung
com.android.backupconfirm
com.android.bips
com.android.bookmarkprovider
com.android.chrome
com.android.dreams.phototable
com.android.keychain
com.android.providers.partnerbookmarks
com.android.se
com.android.sharedstoragebackup
com.android.vending
com.android.wallpaperbackup
com.aura.oobe.samsung
com.enhance.gameservice
com.facebook.appmanager
com.facebook.katana
com.facebook.services
com.facebook.system
com.google.android.apps.maps
com.google.android.apps.photos
com.google.android.apps.restore
com.google.android.apps.turbo
com.google.android.backuptransport
com.google.android.configupdater
com.google.android.ext.services
com.google.android.ext.shared
com.google.android.feedback
com.google.android.gm
com.google.android.gms
com.google.android.gms.policy_sidecar_aps
com.google.android.googlequicksearchbox
com.google.android.gsf
com.google.android.marvin.talkback
com.google.android.music
com.google.android.onetimeinitializer
com.google.android.partnersetup
com.google.android.printservice.recommendation
com.google.android.setupwizard
com.google.android.syncadapters.calendar
com.google.android.syncadapters.contacts
com.google.android.tts
com.google.android.videos
com.google.android.youtube
com.google.ar.core
com.google.vr.vrcore
com.hiya.star
com.knox.vpn.proxyhandler
com.microsoft.office.officehubrow
com.microsoft.skydrive
com.mygalaxy
com.netflix.mediaclient
com.netflix.partner.activation
com.opera.max.preinstall
com.samsung.SMT
com.samsung.aasaservice
com.samsung.android.aircommandmanager
com.samsung.android.airtel.stubapp
com.samsung.android.app.ledbackcover
com.samsung.android.app.sbrowseredge
com.samsung.android.app.siofviewer
com.samsung.android.app.social
com.samsung.android.app.tips
com.samsung.android.app.vrsetupwizardstub
com.samsung.android.app.watchmanagerstub
com.samsung.android.bbc.bbcagent
com.samsung.android.beaconmanager
com.samsung.android.dlp.service
com.samsung.android.dynamiclock
com.samsung.android.easysetup
com.samsung.android.email.provider
com.samsung.android.hmt.vrshell
com.samsung.android.hmt.vrsvc
com.samsung.android.keyguardwallpaperupdator
com.samsung.android.kidsinstaller
com.samsung.android.knox.analytics.uploader
com.samsung.android.knox.containeragent
com.samsung.android.knox.containercore
com.samsung.android.mateagent
com.samsung.android.mdm
com.samsung.android.mfi
com.samsung.android.mobileservice
com.samsung.android.net.wifi.wifiguider
com.samsung.android.rubin.app
com.samsung.android.samsungpass
com.samsung.android.samsungpassautofill
com.samsung.android.scloud
com.samsung.android.smartswitchassistant
com.samsung.android.spay
com.samsung.android.spayfw
com.samsung.android.svoice
com.samsung.android.svoiceime
com.samsung.desktopsystemui
com.samsung.klmsagent
com.samsung.knox.securefolder
com.samsung.knox.securefolder.setuppage
com.samsung.sree
com.samsung.storyservice
com.samsung.svoice.sync
com.sec.android.app.apex
com.sec.android.app.billing
com.sec.android.app.chromecustomizations
com.sec.android.app.dexonpc
com.sec.android.app.kidshome
com.sec.android.cover.ledcover
com.sec.android.desktopcommunity
com.sec.android.desktopmode.uiservice
com.sec.android.easyMover.Agent
com.sec.android.widgetapp.samsungapps
com.sec.android.widgetapp.webmanual
com.sec.enterprise.knox.attestation
com.sec.enterprise.knox.cloudmdm.smdms
com.sec.enterprise.mdm.services.simpin
com.sec.enterprise.mdm.vpn
com.sec.factory.cameralyzer
com.sec.spp.push
com.wssnps
To de-bloat above apps
Download Minimal ADB and Fastboot from here
extract them and where there is "adb.exe" open cmd window there (for windows: go to address bar of file explorer and type "cmd" and press enter)
make sure usb debugging is enabled in your phone and type "adb devices" in cmd. you should see your device.
now type "adb shell" and copy paste below commands in a go.
ADB commands for these apps
pm uninstall -k --user 0 android.autoinstalls.config.samsung
pm uninstall -k --user 0 com.android.backupconfirm
pm uninstall -k --user 0 com.android.bips
pm uninstall -k --user 0 com.android.bookmarkprovider
pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.android.dreams.phototable
pm uninstall -k --user 0 com.android.keychain
pm uninstall -k --user 0 com.android.providers.partnerbookmarks
pm uninstall -k --user 0 com.android.se
pm uninstall -k --user 0 com.android.sharedstoragebackup
pm uninstall -k --user 0 com.android.vending
pm uninstall -k --user 0 com.android.wallpaperbackup
pm uninstall -k --user 0 com.aura.oobe.samsung
pm uninstall -k --user 0 com.enhance.gameservice
pm uninstall -k --user 0 com.facebook.appmanager
pm uninstall -k --user 0 com.facebook.katana
pm uninstall -k --user 0 com.facebook.services
pm uninstall -k --user 0 com.facebook.system
pm uninstall -k --user 0 com.google.android.apps.maps
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.apps.restore
pm uninstall -k --user 0 com.google.android.apps.turbo
pm uninstall -k --user 0 com.google.android.backuptransport
pm uninstall -k --user 0 com.google.android.configupdater
pm uninstall -k --user 0 com.google.android.ext.services
pm uninstall -k --user 0 com.google.android.ext.shared
pm uninstall -k --user 0 com.google.android.feedback
pm uninstall -k --user 0 com.google.android.gm
pm uninstall -k --user 0 com.google.android.gms
pm uninstall -k --user 0 com.google.android.gms.policy_sidecar_aps
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.google.android.gsf
pm uninstall -k --user 0 com.google.android.marvin.talkback
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.onetimeinitializer
pm uninstall -k --user 0 com.google.android.partnersetup
pm uninstall -k --user 0 com.google.android.printservice.recommendation
pm uninstall -k --user 0 com.google.android.setupwizard
pm uninstall -k --user 0 com.google.android.syncadapters.calendar
pm uninstall -k --user 0 com.google.android.syncadapters.contacts
pm uninstall -k --user 0 com.google.android.tts
pm uninstall -k --user 0 com.google.android.tts
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.google.ar.core
pm uninstall -k --user 0 com.google.ar.core
pm uninstall -k --user 0 com.google.vr.vrcore
pm uninstall -k --user 0 com.hiya.star
pm uninstall -k --user 0 com.knox.vpn.proxyhandler
pm uninstall -k --user 0 com.microsoft.office.officehubrow
pm uninstall -k --user 0 com.microsoft.skydrive
pm uninstall -k --user 0 com.mygalaxy
pm uninstall -k --user 0 com.netflix.mediaclient
pm uninstall -k --user 0 com.netflix.partner.activation
pm uninstall -k --user 0 com.opera.max.preinstall
pm uninstall -k --user 0 com.samsung.SMT
pm uninstall -k --user 0 com.samsung.aasaservice
pm uninstall -k --user 0 com.samsung.android.aircommandmanager
pm uninstall -k --user 0 com.samsung.android.airtel.stubapp
pm uninstall -k --user 0 com.samsung.android.app.ledbackcover
pm uninstall -k --user 0 com.samsung.android.app.sbrowseredge
pm uninstall -k --user 0 com.samsung.android.app.siofviewer
pm uninstall -k --user 0 com.samsung.android.app.social
pm uninstall -k --user 0 com.samsung.android.app.tips
pm uninstall -k --user 0 com.samsung.android.app.vrsetupwizardstub
pm uninstall -k --user 0 com.samsung.android.app.watchmanagerstub
pm uninstall -k --user 0 com.samsung.android.bbc.bbcagent
pm uninstall -k --user 0 com.samsung.android.beaconmanager
pm uninstall -k --user 0 com.samsung.android.dlp.service
pm uninstall -k --user 0 com.samsung.android.dynamiclock
pm uninstall -k --user 0 com.samsung.android.easysetup
pm uninstall -k --user 0 com.samsung.android.email.provider
pm uninstall -k --user 0 com.samsung.android.hmt.vrshell
pm uninstall -k --user 0 com.samsung.android.hmt.vrsvc
pm uninstall -k --user 0 com.samsung.android.keyguardwallpaperupdator
pm uninstall -k --user 0 com.samsung.android.kidsinstaller
pm uninstall -k --user 0 com.samsung.android.knox.analytics.uploader
pm uninstall -k --user 0 com.samsung.android.knox.containeragent
pm uninstall -k --user 0 com.samsung.android.knox.containercore
pm uninstall -k --user 0 com.samsung.android.mateagent
pm uninstall -k --user 0 com.samsung.android.mdm
pm uninstall -k --user 0 com.samsung.android.mfi
pm uninstall -k --user 0 com.samsung.android.mobileservice
pm uninstall -k --user 0 com.samsung.android.net.wifi.wifiguider
pm uninstall -k --user 0 com.samsung.android.rubin.app
pm uninstall -k --user 0 com.samsung.android.samsungpass
pm uninstall -k --user 0 com.samsung.android.samsungpassautofill
pm uninstall -k --user 0 com.samsung.android.scloud
pm uninstall -k --user 0 com.samsung.android.smartswitchassistant
pm uninstall -k --user 0 com.samsung.android.spay
pm uninstall -k --user 0 com.samsung.android.spayfw
pm uninstall -k --user 0 com.samsung.android.svoice
pm uninstall -k --user 0 com.samsung.android.svoiceime
pm uninstall -k --user 0 com.samsung.desktopsystemui
pm uninstall -k --user 0 com.samsung.klmsagent
pm uninstall -k --user 0 com.samsung.knox.securefolder
pm uninstall -k --user 0 com.samsung.knox.securefolder.setuppage
pm uninstall -k --user 0 com.samsung.sree
pm uninstall -k --user 0 com.samsung.storyservice
pm uninstall -k --user 0 com.samsung.svoice.sync
pm uninstall -k --user 0 com.sec.android.app.apex
pm uninstall -k --user 0 com.sec.android.app.billing
pm uninstall -k --user 0 com.sec.android.app.chromecustomizations
pm uninstall -k --user 0 com.sec.android.app.dexonpc
pm uninstall -k --user 0 com.sec.android.app.kidshome
pm uninstall -k --user 0 com.sec.android.cover.ledcover
pm uninstall -k --user 0 com.sec.android.desktopcommunity
pm uninstall -k --user 0 com.sec.android.desktopmode.uiservice
pm uninstall -k --user 0 com.sec.android.easyMover.Agent
pm uninstall -k --user 0 com.sec.android.widgetapp.samsungapps
pm uninstall -k --user 0 com.sec.android.widgetapp.webmanual
pm uninstall -k --user 0 com.sec.enterprise.knox.attestation
pm uninstall -k --user 0 com.sec.enterprise.knox.cloudmdm.smdms
pm uninstall -k --user 0 com.sec.enterprise.mdm.services.simpin
pm uninstall -k --user 0 com.sec.enterprise.mdm.vpn
pm uninstall -k --user 0 com.sec.factory.cameralyzer
pm uninstall -k --user 0 com.sec.spp.push
pm uninstall -k --user 0 com.wssnps
for the other de-bloat thread please visit here. The apps mentioned there were breaking many system functions so this is my own list here.
Just in case
Reserved, Just in case.
After debloating my gallery keeps stopping.Which application I have to reinstall? Also please give the package name of that application.
pnsdhrn said:
After debloating my gallery keeps stopping.Which application I have to reinstall? Also please give the package name of that application.
Click to expand...
Click to collapse
Strange, do you have m307f or m307fn?
Also what's the region of your phone firmware, mine is INS and there was no prob for me while debloating.
Restore to the backup before debloating and try to de bloat again and see if the problem persists.
If nothing works, try debloating some apps at a time and see if it breaks
Hritwik said:
Strange, do you have m307f or m307fn?
Also what's the region of your phone firmware, mine is INS and there was no prob for me while debloating.
Restore to the backup before debloating and try to de bloat again and see if the problem persists.
If nothing works, try debloating some apps at a time and see if it breaks
Click to expand...
Click to collapse
Mine is m307f.My region is India. I took about 8 hrs to complete the debloat about 60 apps.So it might be better to know which are apps connected with gallery app.So I can reinstall them.
pnsdhrn said:
Mine is m307f.My region is India. I took about 8 hrs to complete the debloat about 60 apps.So it might be better to know which are apps connected with gallery app.So I can reinstall them.
Click to expand...
Click to collapse
why did it took you 8 hrs to complete de bloat?
ping this issue on telegram on official group https://t.me/SamsungGalaxyM30SOfficial , i will discuss it with you there.
should the phone be rooted for debloating? or can I simply debloatvusing adb?
udyannk5 said:
should the phone be rooted for debloating? or can I simply debloatvusing adb?
Click to expand...
Click to collapse
no need to root
Hi and thanks for the guide. I have installed everything.
Have also wiped and tried it several times because i have no network: "sim not registered on network" on bth sims.
This happens as soon as I disable dm-verity. If I flash Stock ROM back again then its ok and the cards work. Then I do the whole thing again with magisk then dm-verity and can't make or receive any calls. It shows sgnal bars (although sometimes very bad) but I can't mke any calls.
IMEI ist intact as far as I can tell.
The stock ROM I flashed was the PDA version on sammmoble for my phone and country.
I have booted into safe mode and it made no difference.
Any suggestions would be appreciatted.
thanks
Which ones do I need to remove from the list to keep Google play store? Also is it possible to remove Samsung store ?
Thanks for the help
Hritwik said:
De-bloat M30s
make full backup of /data and /system using twrp before debloat
The following apps are going to be de-bloated from your phone through adb. I cannot find another way to batch uninstall apps on android pie. If you know then please comment it below. PLEASE.
If you want other apps to be added to this list then please comment the package name (like com.xxx.xxxx.xxx or whatever) (not the app name like google app) and what this app does. It would be very helpful for all of us and i am also looking for other packages to add to this list since this is near-least de-bloat which does not break any system functionality.
if you want to remove any app from this list then comment the package name and what that package does. . It would be very helpful for all of us and i am also looking for packages to remove from this list that break system functionality.
APPS
android.autoinstalls.config.samsung
com.android.backupconfirm
com.android.bips
com.android.bookmarkprovider
com.android.chrome
com.android.dreams.phototable
com.android.keychain
com.android.providers.partnerbookmarks
com.android.se
com.android.sharedstoragebackup
com.android.vending
com.android.wallpaperbackup
com.aura.oobe.samsung
com.enhance.gameservice
com.facebook.appmanager
com.facebook.katana
com.facebook.services
com.facebook.system
com.google.android.apps.maps
com.google.android.apps.photos
com.google.android.apps.restore
com.google.android.apps.turbo
com.google.android.backuptransport
com.google.android.configupdater
com.google.android.ext.services
com.google.android.ext.shared
com.google.android.feedback
com.google.android.gm
com.google.android.gms
com.google.android.gms.policy_sidecar_aps
com.google.android.googlequicksearchbox
com.google.android.gsf
com.google.android.marvin.talkback
com.google.android.music
com.google.android.onetimeinitializer
com.google.android.partnersetup
com.google.android.printservice.recommendation
com.google.android.setupwizard
com.google.android.syncadapters.calendar
com.google.android.syncadapters.contacts
com.google.android.tts
com.google.android.videos
com.google.android.youtube
com.google.ar.core
com.google.vr.vrcore
com.hiya.star
com.knox.vpn.proxyhandler
com.microsoft.office.officehubrow
com.microsoft.skydrive
com.mygalaxy
com.netflix.mediaclient
com.netflix.partner.activation
com.opera.max.preinstall
com.samsung.SMT
com.samsung.aasaservice
com.samsung.android.aircommandmanager
com.samsung.android.airtel.stubapp
com.samsung.android.app.ledbackcover
com.samsung.android.app.sbrowseredge
com.samsung.android.app.siofviewer
com.samsung.android.app.social
com.samsung.android.app.tips
com.samsung.android.app.vrsetupwizardstub
com.samsung.android.app.watchmanagerstub
com.samsung.android.bbc.bbcagent
com.samsung.android.beaconmanager
com.samsung.android.dlp.service
com.samsung.android.dynamiclock
com.samsung.android.easysetup
com.samsung.android.email.provider
com.samsung.android.hmt.vrshell
com.samsung.android.hmt.vrsvc
com.samsung.android.keyguardwallpaperupdator
com.samsung.android.kidsinstaller
com.samsung.android.knox.analytics.uploader
com.samsung.android.knox.containeragent
com.samsung.android.knox.containercore
com.samsung.android.mateagent
com.samsung.android.mdm
com.samsung.android.mfi
com.samsung.android.mobileservice
com.samsung.android.net.wifi.wifiguider
com.samsung.android.rubin.app
com.samsung.android.samsungpass
com.samsung.android.samsungpassautofill
com.samsung.android.scloud
com.samsung.android.smartswitchassistant
com.samsung.android.spay
com.samsung.android.spayfw
com.samsung.android.svoice
com.samsung.android.svoiceime
com.samsung.desktopsystemui
com.samsung.klmsagent
com.samsung.knox.securefolder
com.samsung.knox.securefolder.setuppage
com.samsung.sree
com.samsung.storyservice
com.samsung.svoice.sync
com.sec.android.app.apex
com.sec.android.app.billing
com.sec.android.app.chromecustomizations
com.sec.android.app.dexonpc
com.sec.android.app.kidshome
com.sec.android.cover.ledcover
com.sec.android.desktopcommunity
com.sec.android.desktopmode.uiservice
com.sec.android.easyMover.Agent
com.sec.android.widgetapp.samsungapps
com.sec.android.widgetapp.webmanual
com.sec.enterprise.knox.attestation
com.sec.enterprise.knox.cloudmdm.smdms
com.sec.enterprise.mdm.services.simpin
com.sec.enterprise.mdm.vpn
com.sec.factory.cameralyzer
com.sec.spp.push
com.wssnps
To de-bloat above apps
Download Minimal ADB and Fastboot from here
extract them and where there is "adb.exe" open cmd window there (for windows: go to address bar of file explorer and type "cmd" and press enter)
make sure usb debugging is enabled in your phone and type "adb devices" in cmd. you should see your device.
now type "adb shell" and copy paste below commands in a go.
ADB commands for these apps
pm uninstall -k --user 0 android.autoinstalls.config.samsung
pm uninstall -k --user 0 com.android.backupconfirm
pm uninstall -k --user 0 com.android.bips
pm uninstall -k --user 0 com.android.bookmarkprovider
pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.android.dreams.phototable
pm uninstall -k --user 0 com.android.keychain
pm uninstall -k --user 0 com.android.providers.partnerbookmarks
pm uninstall -k --user 0 com.android.se
pm uninstall -k --user 0 com.android.sharedstoragebackup
pm uninstall -k --user 0 com.android.vending
pm uninstall -k --user 0 com.android.wallpaperbackup
pm uninstall -k --user 0 com.aura.oobe.samsung
pm uninstall -k --user 0 com.enhance.gameservice
pm uninstall -k --user 0 com.facebook.appmanager
pm uninstall -k --user 0 com.facebook.katana
pm uninstall -k --user 0 com.facebook.services
pm uninstall -k --user 0 com.facebook.system
pm uninstall -k --user 0 com.google.android.apps.maps
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.apps.restore
pm uninstall -k --user 0 com.google.android.apps.turbo
pm uninstall -k --user 0 com.google.android.backuptransport
pm uninstall -k --user 0 com.google.android.configupdater
pm uninstall -k --user 0 com.google.android.ext.services
pm uninstall -k --user 0 com.google.android.ext.shared
pm uninstall -k --user 0 com.google.android.feedback
pm uninstall -k --user 0 com.google.android.gm
pm uninstall -k --user 0 com.google.android.gms
pm uninstall -k --user 0 com.google.android.gms.policy_sidecar_aps
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.google.android.gsf
pm uninstall -k --user 0 com.google.android.marvin.talkback
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.onetimeinitializer
pm uninstall -k --user 0 com.google.android.partnersetup
pm uninstall -k --user 0 com.google.android.printservice.recommendation
pm uninstall -k --user 0 com.google.android.setupwizard
pm uninstall -k --user 0 com.google.android.syncadapters.calendar
pm uninstall -k --user 0 com.google.android.syncadapters.contacts
pm uninstall -k --user 0 com.google.android.tts
pm uninstall -k --user 0 com.google.android.tts
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.google.ar.core
pm uninstall -k --user 0 com.google.ar.core
pm uninstall -k --user 0 com.google.vr.vrcore
pm uninstall -k --user 0 com.hiya.star
pm uninstall -k --user 0 com.knox.vpn.proxyhandler
pm uninstall -k --user 0 com.microsoft.office.officehubrow
pm uninstall -k --user 0 com.microsoft.skydrive
pm uninstall -k --user 0 com.mygalaxy
pm uninstall -k --user 0 com.netflix.mediaclient
pm uninstall -k --user 0 com.netflix.partner.activation
pm uninstall -k --user 0 com.opera.max.preinstall
pm uninstall -k --user 0 com.samsung.SMT
pm uninstall -k --user 0 com.samsung.aasaservice
pm uninstall -k --user 0 com.samsung.android.aircommandmanager
pm uninstall -k --user 0 com.samsung.android.airtel.stubapp
pm uninstall -k --user 0 com.samsung.android.app.ledbackcover
pm uninstall -k --user 0 com.samsung.android.app.sbrowseredge
pm uninstall -k --user 0 com.samsung.android.app.siofviewer
pm uninstall -k --user 0 com.samsung.android.app.social
pm uninstall -k --user 0 com.samsung.android.app.tips
pm uninstall -k --user 0 com.samsung.android.app.vrsetupwizardstub
pm uninstall -k --user 0 com.samsung.android.app.watchmanagerstub
pm uninstall -k --user 0 com.samsung.android.bbc.bbcagent
pm uninstall -k --user 0 com.samsung.android.beaconmanager
pm uninstall -k --user 0 com.samsung.android.dlp.service
pm uninstall -k --user 0 com.samsung.android.dynamiclock
pm uninstall -k --user 0 com.samsung.android.easysetup
pm uninstall -k --user 0 com.samsung.android.email.provider
pm uninstall -k --user 0 com.samsung.android.hmt.vrshell
pm uninstall -k --user 0 com.samsung.android.hmt.vrsvc
pm uninstall -k --user 0 com.samsung.android.keyguardwallpaperupdator
pm uninstall -k --user 0 com.samsung.android.kidsinstaller
pm uninstall -k --user 0 com.samsung.android.knox.analytics.uploader
pm uninstall -k --user 0 com.samsung.android.knox.containeragent
pm uninstall -k --user 0 com.samsung.android.knox.containercore
pm uninstall -k --user 0 com.samsung.android.mateagent
pm uninstall -k --user 0 com.samsung.android.mdm
pm uninstall -k --user 0 com.samsung.android.mfi
pm uninstall -k --user 0 com.samsung.android.mobileservice
pm uninstall -k --user 0 com.samsung.android.net.wifi.wifiguider
pm uninstall -k --user 0 com.samsung.android.rubin.app
pm uninstall -k --user 0 com.samsung.android.samsungpass
pm uninstall -k --user 0 com.samsung.android.samsungpassautofill
pm uninstall -k --user 0 com.samsung.android.scloud
pm uninstall -k --user 0 com.samsung.android.smartswitchassistant
pm uninstall -k --user 0 com.samsung.android.spay
pm uninstall -k --user 0 com.samsung.android.spayfw
pm uninstall -k --user 0 com.samsung.android.svoice
pm uninstall -k --user 0 com.samsung.android.svoiceime
pm uninstall -k --user 0 com.samsung.desktopsystemui
pm uninstall -k --user 0 com.samsung.klmsagent
pm uninstall -k --user 0 com.samsung.knox.securefolder
pm uninstall -k --user 0 com.samsung.knox.securefolder.setuppage
pm uninstall -k --user 0 com.samsung.sree
pm uninstall -k --user 0 com.samsung.storyservice
pm uninstall -k --user 0 com.samsung.svoice.sync
pm uninstall -k --user 0 com.sec.android.app.apex
pm uninstall -k --user 0 com.sec.android.app.billing
pm uninstall -k --user 0 com.sec.android.app.chromecustomizations
pm uninstall -k --user 0 com.sec.android.app.dexonpc
pm uninstall -k --user 0 com.sec.android.app.kidshome
pm uninstall -k --user 0 com.sec.android.cover.ledcover
pm uninstall -k --user 0 com.sec.android.desktopcommunity
pm uninstall -k --user 0 com.sec.android.desktopmode.uiservice
pm uninstall -k --user 0 com.sec.android.easyMover.Agent
pm uninstall -k --user 0 com.sec.android.widgetapp.samsungapps
pm uninstall -k --user 0 com.sec.android.widgetapp.webmanual
pm uninstall -k --user 0 com.sec.enterprise.knox.attestation
pm uninstall -k --user 0 com.sec.enterprise.knox.cloudmdm.smdms
pm uninstall -k --user 0 com.sec.enterprise.mdm.services.simpin
pm uninstall -k --user 0 com.sec.enterprise.mdm.vpn
pm uninstall -k --user 0 com.sec.factory.cameralyzer
pm uninstall -k --user 0 com.sec.spp.push
pm uninstall -k --user 0 com.wssnps
for the other de-bloat thread please visit here. The apps mentioned there were breaking many system functions so this is my own list here.
Click to expand...
Click to collapse
Do you know if any M30s global version attemp works with this guide?
Derealjessejames said:
Which ones do I need to remove from the list to keep Google play store? Also is it possible to remove Samsung store ?
Thanks for the help
Click to expand...
Click to collapse
"com.android.vending" for playstore.
and i think this list removes samsung store, if not, just execute below command after putting samsung store package name in it (just like other commands).
"pm uninstall -k --user 0 <samsung store pkg name>"
rullydotcom said:
Do you know if any M30s global version attemp works with this guide?
Click to expand...
Click to collapse
it works on any version.
A Reddit User sent me the link to this Thread and I believe this may be what I am looking for, however, I have a few questions, just to make sure:
+Will this Debloat/DeGoogle/MicroG Install work on a Samsung Galaxy Note 9 (Exynos) and, once complete, still allow one to use Samsung's One UI with full S-Pen functionality?
+If so, is there a different process for the Note?
+When it was stated that this will work on "...any other device", does that mean any Android Phone from any manufacturer with an Unlockable Bootloader, like the Red Hydrogen One or the LG V60 (LMV600EA)?
Thanks for any help that may be sent my way.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Hritwik said:
This guide explains how to debloat M30s (or any other samsung device or any other device) and also deGoogle it by removing most of google invasive crap. (yes, GPlay services is also removed).​Play store, Google app and other crap is also removed from system, so if you want to use them, install them as user app. The installation for play store is different, and it is explained below.
Check my Post on reddit for more up to date info and clear instructions HERE
When we remove Gplay services, many apps and services stop working . Many apps will give error but still work (like maps and telegram and whatsapp). Play store will definitely not work and many apps that use push notification through Gplay services (most of them) will not be able to do so. In my case Uber, ola or any other ride app was also not working and was crashing constantly. Paytm will also not work without play services. And on top of that many apps that use location might not behave properly.
Whoosh! those are a lot of problems for uninstalling play services. So, why would anyone want to do that?
Simply put it, Google is an Advertising company. No it is not a company that sells product, i mean yes it sells products and earns from them BUT more than 60% of their revenue comes from Ads that they serve you. And yes, google is the biggest Ad company in the world with more than 80% of ad share (i may be wrong about the %, feel free to search yourself). So obviously they want ta make money out of your data (by selling it) and to do that what better way than to install spyware on world's largest mobile OS.
Google play services record your every action, tracking every app that you opened and everything you do. That data remains with google and they sell it to 3rd parties (and you agreed to it when you made Google account and setup your android device. Remember Clicking on "I AGREE"?).
Here i will not discuss how invasive it is. A simple Web search with "google play services tracking" will give you much more information. (and please do search it, i beg you) (Pro Tip: reddit has best answers, so explore reddit links from search)
Here is a good one explaining things
And Gplay services Eat a LOT of battery by constantly Running in background. So if you want better battery, remove it
So you have decided to degoogle your phone (and debloat it). What to do about all those errors after removing play services?
Here Comes MicroG. microG is an Open Source replacement for Google Play Services.
"MicroG is a free-as-in-freedom re-implementation of Google’s proprietary Android user space apps and libraries.
The linux-based open-source mobile operating system Android is not only the most popular mobile operating system in the world, it’s also on the way to becoming a proprietary operating system. How is that?
While the core operating system is still released as part of the Android Open Source Project, the majority of core apps are not. It gets worse: More and more libraries and APIs are only available on phones that run various Google apps pre-installed, effectively locking third-party apps to the Google ecosystem. For these reasons Android is described as being a “look but don’t touch” kind of open.
At this point, several popular open-source applications already require some of Google’s proprietary libraries to be installed. Increasing demand in the free software community in addition to severe problems in Google’s proprietary software discovered by the Android modding community, have led to the development of a free software clone of Google’s proprietary core libraries and applications - the microG Project was born.
Although most microG components are far from complete, users are amazed by the results. Free software users got extended application support, privacy-caring users can reduce or monitor data that is sent to Google and especially older phones can expect some battery life improvements."
(So it basically removes all those errors. Great!)
So, Lets start Degoogling!
Warning: bootloader needs to be unlocked, magisk should be there and twrp should be installed.
NOTE: MAKE FULL NANDROID BACKUP OF YOUR DEVICE BEFORE PROCEEDING BY GOING TO TWRP -> BACKUP -> SELECT ALL . store it in PC or somewhere safe​
Removing google crap
Flash TWRP and install magisk.
We need Signature spoofing in the ROM. Download SmaliPatcher from here and tick all patches, (We are interested in the "signature spoofing" one but all of them are useful) and follow the instructions on its page to install that module. Now your system supports signature spoofing. (I recommend SmaliPatcher even if your rom supports Signature Spoofing so that no issue arises)
Other ways for signature spoofing are given in MicroG wiki here
(IF YOU ARE ON STOCK ROM)
In case you had the Google Play Services previously installed (which Users having stock ROM have), remove all updates and the packages in /system/priv-app of the Google Services (you can use TWRP file manager or any root explorer to delete below packages, just delete the apk files in respective folders):
GmsCore (PrebuiltGmsCore, PrebuiltGmsCorePi, PrebuiltGmsCorePix)
GoogleBackupTransport
GoogleFeedback
GoogleLoginService
GoogleOneTimeInitializer
GooglePartnerSetup
GoogleServicesFramework
Phonesky
SetupWizard
Velvet.
In case you forgot to remove the GmsCore updates, you can manually remove these using adb uninstall com.google.android.gms.
After that, reboot your android device - all privileged GAPPS should be removed. (a bootloop may be caused, but dont worry, just boot into TWRP and follow below steps.)
IF YOU ARE ON CUSTOM ROM-> after flashing rom zip, do not reboot and follow below (DONT FLASH ANY GAPPS)
Make full backup of your device if not made till now​
Installing MicroG
Download Latest "MinMicroG-Standard-XXX.zip" from here
Add "system-" to start of package name (thus making it like "system-MinMicroG-Standard-XXX.zip" ) and copy it in sdcard or internal storage of phone. Now boot into TWRP
flash "system-MinMicroG-Standard-XXX.zip".
OLD METHOD, USE THIS IF ABOVE WONT WORK
Download the following from here
full NanoDroid-xx.xx.xx.xxxxxxx.zip
NanoDroid-setupwizard.zip
NanoDroid-uninstaller.zip (if it causes brick)
Copy below in sdcard or internal storage of phone. Now boot into TWRP
NanoDroid-setupwizard.zip
NanoDroid-uninstaller.zip (if it causes brick)
flash NanoDroid-setupwizard.zip, now an aroma installer is opened. click on next , agree to terms and click next, chose save location "/data/media/0" (you can change this as per your needs but remember this location since here the installer will save 3 files) and click next
now from here onwards you can select yourself according to your needs or follow my tutorial till the end of aroma installer.
you should be on generic settings page, tick 'apps', 'maps apiv1', 'init scrips', 'gnu bash', and 'shell utils'. click next.
in microG page, select "full", next, on f-droid page select "official", next, select all 4 nlpBackends, next, now here select "play store(patrched)" if you want to use Play store (your choice, if you want to degoogle select "Aurora + fake store"), next
now select apps of your choice here, next, on Debloat setup page click next (yeah just skip it), and finally click on create config, next and finish.
Aroma installer Ends now.
Now while in twrp, connect your phone to PC and browse to internal storage (or the location you selected during aroma installer to save files)
the 3 files will be ".nanodroid-overlay", ".nanodroid-setup", ".nanodroid-apps". Copy these to PC and keep them in some place safe. Now open "nanodroid.zip" (that you downloaded earlier) with winRAR or 7zip and drag and drop these 3 files in it. (they should be in root of the zip where "meta-inf" folder is)
now copy NanoDroid-xx.xx.xx.xxxxxxx.zip to your phone and flash it.
now boot into system. if flashing nanodroid causes bootloop, restore from twrp backup that you made (i told you so!).
Configuring MicroG
You need to setup microG , go into microG settings (in app drawer or in settings) and set up everything like:
check results in Self-Check, grant all the missing permissions (by tapping on them)
especially the Battery Optimization item
if Phonesky (= Fake Store or Play Store) lacks signature spoofing permissions head to Settings / Apps / Permissions / Signature Spoofing and grant it
enable Google device registration
enable Google Cloud Messaging (only if you want to receive push messages from your applications)
enable Google SafetyNet, required for applications that utilize SafetyNet, for example Pokémon GO (Currently Broken)
in UnifiedNlp Settings choose all (whichever you've choosen to be installed)
Déjà Vu, Mozilla, Apple, and others (like GSM and WiFi Location Service)
Nominatim as Address lockup backend
after everything is done, reboot
if you installed Play Store open it, setup account and install your apps
Make sure you have all options ticked in self-check of microG settings (except maybe for last one). if not web search it or post it here.
Congratulations, you have successfully removed Gplay services.
ONLY IF YOU HAVE USED OLD METHOD (USING NANODROID)
Updates of nanodroid
Make full backup of your device before update. In case anything happens after update, you can rollback easily​So the nanodroid is updated quite frequently with the apps that come with it. So when you see an updated version of nanodroid on official download page (yeah there are no automatic updates, you have to manually check by going to the download page and download it) download below zips from here
full NanoDroid-xx.xx.xx.xxxxxxx.zip (the updated version)
NanoDroid-uninstaller.zip (the updated version)
* Now open "NanoDroid-xx.xx.xx.xxxxxxx.zip " (updated version) with winRAR or 7zip and drag and drop those 3 files [ ".nanodroid-overlay", ".nanodroid-setup", ".nanodroid-apps".] in it. (just like you did before)
* Now copy NanoDroid-xx.xx.xx.xxxxxxx.zip to your phone and flash it through twrp.
You may need to re-configure microG, so just do it again.
Huge thanks to the below members for the tools.
@santhoosh for twrp
@MaR-V-iN for microG (thank you sir!)
@Setialpha for nanodroid
@FriendlyNeighborhoodShane for MinMicroG
and other ones whom i forgot to add
Now lets de-bloat your device. see post #2
Click to expand...
Click to collapse
CommanderSozo said:
A Reddit User sent me the link to this Thread and I believe this may be what I am looking for, however, I have a few questions, just to make sure:
+Will this Debloat/DeGoogle/MicroG Install work on a Samsung Galaxy Note 9 (Exynos) and, once complete, still allow one to use Samsung's One UI with full S-Pen functionality?
+If so, is there a different process for the Note?
+When it was stated that this will work on "...any other device", does that mean any Android Phone from any manufacturer with an Unlockable Bootloader, like the Red Hydrogen One or the LG V60 (LMV600EA)?
Thanks for any help that may be sent my way.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
+Yes, just dont uninstall apps that control S-pen functions (you can search which apps are necessary for them)
+NO, but make a complete backup in case you ****up something.
+Yes, it should. Try it and for more general guide visit here
Thanks so much!
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Hritwik said:
+Yes, just dont uninstall apps that control S-pen functions (you can search which apps are necessary for them)
+NO, but make a complete backup in case you ****up something.
+Yes, it should. Try it and for more general guide visit here
Click to expand...
Click to collapse
Can i do signature spoofing with super su and xposed? My phone doesnt support magisk
So, If i understand correctly, I will have oneui with microG instead of GMS correct? Also, after all the process can I root the phone or that must be done before? I wanna use magisk module to spoof Saftynet. And to finish, will I be able to update oneui without a problem?
Thx a lot

Question So much to ask for de-Googled Sony Android with Sony apps?

I just got my Xperia 1iii. It's great, but I don't want all the Google crap on it. Disabling the Google services just makes it throw errors about how every bloody app on the phone won't run without Google Play Services (like phone, serious? Phone?!) The errors throw so frequently it pretty much makes the phone unusable. Previously I uploaded an AOSP build onto my XA2 Ultra and it lacked all of the Sony apps, and the "fixed" ones (like Musix) would often crash for no reason.
Since part of the Xperia 1iii big deal is its photography and video app capabilities, I am hesitant to upload a custom build and lose my Sony apps. Is it possible to start with a factory Xperia firmware and rip all the Google crap out of it and replace things like Phone and Contacts with non-Google versions? Is it possible to build an AOSP firmware following the Sony Developers guides without the Google crud but with the Sony Xperia apps.
I love the Sony stuff (brand whore mode active.) I just want a de-Googled Xperia, with all my Sony apps which make the Xperia an Xperia. I don't need anything any more fancy than that. Is that so much to ask??
Hi, you can try to flash CN firmware if you don't want google apps installed.
Sony is using Google's apps on the Xperia 1 III. Phone, Messages, Contacts, Photos, Mail, Maps, Clock, Settings, Files, etc. Some people maintain the original AOSP apps that might be good replacements.
Sony's camera and video apps are really bad so I wouldn't miss them. I'm keeping the bootloader locked a bit longer only to see if 5G gets fixed in the US model.
spine6 said:
Hi, you can try to flash CN firmware if you don't want google apps installed.
Click to expand...
Click to collapse
Is going from Google running in the background to a Chinese firmware really any better?
kevinmcmurtrie said:
Sony is using Google's apps on the Xperia 1 III. Phone, Messages, Contacts, Photos, Mail, Maps, Clock, Settings, Files, etc. Some people maintain the original AOSP apps that might be good replacements.
Sony's camera and video apps are really bad so I wouldn't miss them. I'm keeping the bootloader locked a bit longer only to see if 5G gets fixed in the US model.
Click to expand...
Click to collapse
If I can replace the Google versions with AOSP versions, I could conceivably then disable the Google services. What's so bad about the camera and video apps on the 1iii? They seem quite capable and I thought were part of Sony's flagship system. I am disabling 5G network and only using LTE and lower on my phone, so that part does not bother me.
There is a trick to disable most google, I got rid of some google and the one push button on the side for google assistant, but you have to start the phone from scratch. and if you want to return back to normal, just reset your phone, I don't have my phone now, yesterday I got a good price and traded for Samsung S8 tablet. the Xperia 1iii, bad battery life.
kms108 said:
There is a trick to disable most google, I got rid of some google and the one push button on the side for google assistant, but you have to start the phone from scratch. and if you want to return back to normal, just reset your phone, I don't have my phone now, yesterday I got a good price and traded for Samsung S8 tablet. the Xperia 1iii, bad battery life.
Click to expand...
Click to collapse
Thanks. That gives me some hope, then. Do you have any tips?
I can't give you the exact details, as i don't have my phone now, but these are the instructions.
You have to hard reset the phone, with the phone offline and no data going through the phone, for the normal setup it should give you the option in the form of ticks, once setup, all the apps ticked off should not show, and the google assistant button does not work.
hope this works for you.
kms108 said:
I can't give you the exact details, as i don't have my phone now, but these are the instructions.
You have to hard reset the phone, with the phone offline and no data going through the phone, for the normal setup it should give you the option in the form of ticks, once setup, all the apps ticked off should not show, and the google assistant button does not work.
hope this works for you.
Click to expand...
Click to collapse
Thanks. Unfortunately, the only check options I have are for location and a sub-option. I must accept the Google terms in order to complete setup. I am going to put APKs for the Simple Mobile Tools on my SD card, install those, and set them as my default applications before I start disabling Google apps and the Google Play Service. I will put it on-line later and see what happens.
HA! I unlocked the bootloader in preparation for compiling AOSP. In the meantime I decided to go hog wild and start uninstalling applications via adb. I wound up getting it into a boot-loop and had to re-lock the bootloader to restore with the Xperia Companion. I will be diving back in later this week. I think I know what I removed which broke it.
Are there any limits to the number of times I can unlock and re-lock the bootloader? I imagine going at this with reckless abandon only to find that I reach some kind of limit.
With the boot-loader re-locked, I did some more work in the adb shell and the package manager.
While looking up the various packaged installed on the phone, I found this very helpful blog post:
Remove Android system applications (an example)
How to remove android preinstalled applications (an example)
fekir.info
I found these packages installed on my Xperia 1iii with the latest Android 11 update, build 61.0.A.23.20.
Spoiler: Installed packages
Code:
$ pm list packages|sort
android
android.autoinstalls.config.sony.xperia
android.enterprise.overlay.common
android.enterprise.overlay.generic
android.overlay.common
android.platform.overlay
android.platform.res.overlay.google_dialer
android.product.overlay
android.product.res.overlay.tmobile_pl_non_static
android.raw.res.overlay_312
android.stamina.res.overlay
android.stamina.rro.feature.overlay
com.activision.callofduty.shooter
com.android.apps.tag
com.android.backupconfirm
com.android.bips
com.android.bluetooth
com.android.bluetoothmidiservice
com.android.bookmarkprovider
com.android.calllogbackup
com.android.carrierconfig
com.android.carrierconfig.product.res.overlay.us
com.android.carrierdefaultapp
com.android.cellbroadcastreceiver
com.android.certinstaller
com.android.chrome
com.android.companiondevicemanager
com.android.cts.ctsshim
com.android.cts.priv.ctsshim
com.android.dreams.basic
com.android.egg
com.android.emergency
com.android.externalstorage
com.android.facelock
com.android.hotwordenrollment.okgoogle
com.android.hotwordenrollment.xgoogle
com.android.htmlviewer
com.android.inputdevices
com.android.internal.display.cutout.emulation.corner
com.android.internal.display.cutout.emulation.double
com.android.internal.display.cutout.emulation.hole
com.android.internal.display.cutout.emulation.tall
com.android.internal.display.cutout.emulation.waterfall
com.android.internal.systemui.navbar.gestural
com.android.internal.systemui.navbar.gestural_extra_wide_back
com.android.internal.systemui.navbar.gestural_narrow_back
com.android.internal.systemui.navbar.gestural_wide_back
com.android.internal.systemui.navbar.threebutton
com.android.keychain
com.android.localtransport
com.android.location.fused
com.android.managedprovisioning
com.android.mms.service
com.android.mtp
com.android.musicfx
com.android.networkstack.tethering.resources.overlay
com.android.nfc
com.android.omadm.service
com.android.ons
com.android.pacprocessor
com.android.partnerbrowsercustomizations.chromeHomepage
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1011
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1452
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1492
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1535
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1659
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1713
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1974
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_23
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_32
com.android.partnerbrowsercustomizations.chromeHomepage.overlay_678
com.android.phone
com.android.phone.overlay.common
com.android.phone.product.res.overlay.orange_ims_non_static
com.android.printspooler
com.android.providers.blockednumber
com.android.providers.calendar
com.android.providers.contacts
com.android.providers.downloads
com.android.providers.downloads.ui
com.android.providers.media
com.android.providers.partnerbookmarks
com.android.providers.partnerbookmarks.overlay_1011
com.android.providers.partnerbookmarks.overlay_1452
com.android.providers.partnerbookmarks.overlay_1492
com.android.providers.partnerbookmarks.overlay_1526
com.android.providers.partnerbookmarks.overlay_1535
com.android.providers.partnerbookmarks.overlay_1614
com.android.providers.partnerbookmarks.overlay_1615
com.android.providers.partnerbookmarks.overlay_1659
com.android.providers.partnerbookmarks.overlay_1713
com.android.providers.partnerbookmarks.overlay_1974
com.android.providers.partnerbookmarks.overlay_23
com.android.providers.partnerbookmarks.overlay_32
com.android.providers.partnerbookmarks.overlay_678
com.android.providers.partnerbookmarks.overlay_717
com.android.providers.partnerbookmarks.overlay_760
com.android.providers.partnerbookmarks.overlay_761
com.android.providers.partnerbookmarks.overlay_767
com.android.providers.partnerbookmarks.overlay_850
com.android.providers.settings
com.android.providers.settings.overlay_1492
com.android.providers.telephony
com.android.providers.userdictionary
com.android.proxyhandler
com.android.rro.platform.nfc
com.android.rro.platform.semcsettings
com.android.rro.platform.settings
com.android.rro.platform.xperiadeviceactions
com.android.rro.product.semcclockplugins
com.android.sdm.plugins.connmo
com.android.se
com.android.server.telecom
com.android.server.telecom.platform.res.overlay.google_dialer
com.android.server.telecom.product.res.overlay.positive_roaming_dialog_non_static
com.android.server.telecom.product.res.overlay.tmobile_us_non_static
com.android.server.telecom.product.res.overlay.verizon_non_static
com.android.settings
com.android.settings.intelligence
com.android.settings.overlay_2
com.android.settings.overlay_2101
com.android.settings.overlay_2102
com.android.settings.overlay_2419
com.android.settings.product.res.overlay.disable_data_in_2g_non_static
com.android.settings.product.res.overlay.hutchison_non_static
com.android.settings.product.res.overlay.orange_vowifi_non_static
com.android.settings.product.res.overlay.positive_roaming_dialog_non_static
com.android.settings.product.res.overlay.sky_uk_non_static
com.android.settings.product.res.overlay.wfc_collect_location_warning_for_emcall_non_static
com.android.settings.product.res.overlay.wfc_collect_location_warning_non_static
com.android.settings.stamina.res.overlay
com.android.settingsprovider.platform.overlay
com.android.sharedstoragebackup
com.android.shell
com.android.simappdialog
com.android.smspush
com.android.soundpicker
com.android.statementservice
com.android.stk
com.android.systemui
com.android.systemui.overlay.common
com.android.systemui.overlay_1492
com.android.systemui.overlay_2
com.android.systemui.overlay_2101
com.android.systemui.overlay_2102
com.android.systemui.overlay_2419
com.android.systemui.platform.overlay
com.android.systemui.plugin.globalactions.wallet
com.android.systemui.product.overlay
com.android.systemui.product.res.overlay.rat_icon_3g_to_hplus_non_static
com.android.systemui.product.res.overlay.rat_icon_4g_to_4gplus_non_static
com.android.systemui.product.res.overlay.rat_icon_5gplus_to_5guw_non_static
com.android.systemui.product.res.overlay.rat_icon_e_to_2gplus_non_static
com.android.systemui.product.res.overlay.rat_icon_g_to_2g_non_static
com.android.systemui.product.res.overlay.rat_icon_h_to_3gplus_non_static
com.android.systemui.product.res.overlay.rat_icon_hplus_to_3gplus_non_static
com.android.systemui.stamina.res.overlay
com.android.theme.color.black
com.android.theme.color.cinnamon
com.android.theme.color.green
com.android.theme.color.ocean
com.android.theme.color.orchid
com.android.theme.color.purple
com.android.theme.color.space
com.android.theme.font.notoserifsource
com.android.theme.icon.pebble
com.android.theme.icon.roundedrect
com.android.theme.icon.squircle
com.android.theme.icon.taperedrect
com.android.theme.icon.teardrop
com.android.theme.icon.vessel
com.android.theme.icon_pack.circular.android
com.android.theme.icon_pack.circular.launcher
com.android.theme.icon_pack.circular.settings
com.android.theme.icon_pack.circular.systemui
com.android.theme.icon_pack.circular.themepicker
com.android.theme.icon_pack.filled.android
com.android.theme.icon_pack.filled.launcher
com.android.theme.icon_pack.filled.settings
com.android.theme.icon_pack.filled.systemui
com.android.theme.icon_pack.filled.themepicker
com.android.theme.icon_pack.rounded.android
com.android.theme.icon_pack.rounded.launcher
com.android.theme.icon_pack.rounded.settings
com.android.theme.icon_pack.rounded.systemui
com.android.theme.icon_pack.rounded.themepicker
com.android.tidal.campaigninstaller
com.android.traceur
com.android.vending
com.android.vpndialogs
com.android.wallpaper.livepicker
com.android.wallpaperbackup
com.android.wallpapercropper
com.android.wifi.resources.overlay
com.dolby.daxappui
com.dolby.daxservice
com.facebook.appmanager
com.facebook.katana
com.facebook.services
com.facebook.system
com.gameloft.android.ANMP.GloftA9HM
com.google.android.apps.googleassistant
com.google.android.apps.maps
com.google.android.apps.messaging
com.google.android.apps.nbu.files
com.google.android.apps.photos
com.google.android.apps.restore
com.google.android.apps.setupwizard.searchselector
com.google.android.apps.turbo
com.google.android.apps.wellbeing
com.google.android.apps.work.oobconfig
com.google.android.calendar
com.google.android.captiveportallogin
com.google.android.cellbroadcastreceiver
com.google.android.cellbroadcastservice
com.google.android.configupdater
com.google.android.contacts
com.google.android.deskclock
com.google.android.dialer
com.google.android.documentsui
com.google.android.ext.services
com.google.android.ext.shared
com.google.android.feedback
com.google.android.gm
com.google.android.gms
com.google.android.gms.location.history
com.google.android.googlequicksearchbox
com.google.android.gsf
com.google.android.hotspot2.osulogin
com.google.android.ims
com.google.android.inputmethod.latin
com.google.android.marvin.talkback
com.google.android.modulemetadata
com.google.android.networkstack
com.google.android.networkstack.permissionconfig
com.google.android.networkstack.tethering
com.google.android.onetimeinitializer
com.google.android.overlay.gmsconfig.common
com.google.android.overlay.gmsconfig.comms
com.google.android.overlay.gmsconfig.gsa
com.google.android.overlay.gmsconfig.photos
com.google.android.overlay.gmswellbeingconfig
com.google.android.overlay.modules.ext.services
com.google.android.overlay.modules.modulemetadata.forframework
com.google.android.overlay.modules.permissioncontroller
com.google.android.overlay.modules.permissioncontroller.forframework
com.google.android.packageinstaller
com.google.android.partnersetup
com.google.android.permissioncontroller
com.google.android.printservice.recommendation
com.google.android.projection.gearhead
com.google.android.providers.media.module
com.google.android.setupwizard
com.google.android.syncadapters.contacts
com.google.android.tts
com.google.android.webview
com.google.android.wfcactivation
com.google.android.wifi.resources
com.google.android.youtube
com.google.ar.core
com.google.mainline.telemetry
com.linkedin.android
com.netflix.mediaclient
com.netflix.partner.activation
com.orange.aura.oobe
com.orange.update
com.qti.dpmserviceapp
com.qti.ltebc
com.qti.qualcomm.datastatusnotification
com.qti.qualcomm.deviceinfo
com.qualcomm.atfwd
com.qualcomm.embms
com.qualcomm.location
com.qualcomm.qcrilmsgtunnel
com.qualcomm.qti.cne
com.qualcomm.qti.devicestatisticsservice
com.qualcomm.qti.dynamicddsservice
com.qualcomm.qti.gpudrivers.lahaina.api30
com.qualcomm.qti.lpa
com.qualcomm.qti.remoteSimlockAuth
com.qualcomm.qti.services.systemhelper
com.qualcomm.qti.telephonyservice
com.qualcomm.qti.uceShimService
com.qualcomm.qti.uim
com.qualcomm.qti.uimGbaApp
com.qualcomm.qti.workloadclassifier
com.qualcomm.qtil.aptxals
com.qualcomm.qtil.aptxalsOverlay
com.qualcomm.qtil.aptxui
com.qualcomm.timeservice
com.qualcomm.uimremoteclient
com.qualcomm.uimremoteserver
com.qualcomm.wfd.service
com.somc.immersive_ae_optimizer
com.sonyericsson.android.addoncamera.artfilter
com.sonyericsson.android.camera3d
com.sonyericsson.android.omacp
com.sonyericsson.android.servicemenu
com.sonyericsson.android.servicemenu.product.res.overlay.pdx215
com.sonyericsson.crashmonitor
com.sonyericsson.devicemonitor
com.sonyericsson.idd.agent
com.sonyericsson.lockscreen.uxpnxt
com.sonyericsson.mtp
com.sonyericsson.mtp.extension.update
com.sonyericsson.music
com.sonyericsson.music.product.overlay.conformance
com.sonyericsson.music.product.overlay.gracenotedisable
com.sonyericsson.psm.sysmonservice
com.sonyericsson.settings
com.sonyericsson.setupwizard
com.sonyericsson.soundenhancement
com.sonyericsson.startupflagservice
com.sonyericsson.tetherentitlementcheck
com.sonyericsson.unsupportedheadsetnotifier
com.sonyericsson.updatecenter
com.sonyericsson.updatecenter.overlay_1011
com.sonyericsson.updatecenter.overlay_1492
com.sonyericsson.updatecenter.overlay_1659
com.sonyericsson.updatecenter.overlay_1713
com.sonyericsson.updatecenter.overlay_1974
com.sonyericsson.updatecenter.overlay_2
com.sonyericsson.updatecenter.overlay_2101
com.sonyericsson.updatecenter.overlay_2102
com.sonyericsson.updatecenter.overlay_2419
com.sonyericsson.updatecenter.overlay_27
com.sonyericsson.updatecenter.overlay_32
com.sonyericsson.updatecenter.overlay_678
com.sonyericsson.updatecenter.overlay_717
com.sonyericsson.usbux
com.sonyericsson.wirelessplaybackquality
com.sonymobile.addoncamera.portraitselfie
com.sonymobile.advancedwidget.clock
com.sonymobile.aes.entitlementcheck
com.sonymobile.android.externalkeyboard
com.sonymobile.android.externalkeyboardjp
com.sonymobile.apnupdater
com.sonymobile.appprediction
com.sonymobile.aptx.notifier
com.sonymobile.audioutil
com.sonymobile.btidd
com.sonymobile.camera.addon.permission
com.sonymobile.cameracommon
com.sonymobile.cameracommon.permission
com.sonymobile.cinemapro
com.sonymobile.colorgamut
com.sonymobile.datadisclaimer
com.sonymobile.datadisclaimer.overlay_2139
com.sonymobile.devicesecurity.service
com.sonymobile.displaybooster
com.sonymobile.dropbox.system
com.sonymobile.dualdrive
com.sonymobile.dualshockmanager
com.sonymobile.enterprise
com.sonymobile.enterprise.essservice
com.sonymobile.enterprise.service
com.sonymobile.extmonitorapp
com.sonymobile.freeformcontroller
com.sonymobile.freeformcontroller.notificationui
com.sonymobile.gameenhancer
com.sonymobile.gameenhancer.api
com.sonymobile.gameenhancer.browser
com.sonymobile.gameenhancer.monitor
com.sonymobile.gotaidd.service
com.sonymobile.gps.extension
com.sonymobile.gps.locationattribution
com.sonymobile.hook
com.sonymobile.indeviceintelligence
com.sonymobile.infoapp
com.sonymobile.intelligent.backlight
com.sonymobile.intelligent.gesture
com.sonymobile.intelligent.iengine
com.sonymobile.intelligent.observer
com.sonymobile.keyguard.clock
com.sonymobile.launcher
com.sonymobile.launcher.overlay_1011
com.sonymobile.launcher.overlay_1452
com.sonymobile.launcher.overlay_1492
com.sonymobile.launcher.overlay_1659
com.sonymobile.launcher.overlay_1713
com.sonymobile.launcher.overlay_1974
com.sonymobile.launcher.overlay_2
com.sonymobile.launcher.overlay_23
com.sonymobile.launcher.overlay_27
com.sonymobile.launcher.overlay_32
com.sonymobile.launcher.overlay_678
com.sonymobile.launcher.overlay_850
com.sonymobile.launcher.product.res.overlay
com.sonymobile.mediavibration
com.sonymobile.mepstarter
com.sonymobile.moviecreator
com.sonymobile.mtp.extension.fotaupdate
com.sonymobile.nfc.sim
com.sonymobile.nfcextension.nfcextraresources
com.sonymobile.nfcservicemenu
com.sonymobile.onehand
com.sonymobile.photopro
com.sonymobile.pip
com.sonymobile.pocketmode2
com.sonymobile.providers.media
com.sonymobile.retaildemo
com.sonymobile.rro.platform.bluetooth
com.sonymobile.rro.platform.carrierconfig
com.sonymobile.rro.platform.telecomm
com.sonymobile.rro.platform.telephony
com.sonymobile.sidesenseapp
com.sonymobile.smartcharger
com.sonymobile.smartnetworkengine
com.sonymobile.smartnetworkengine.ext
com.sonymobile.smtofrgbc
com.sonymobile.staminalevel
com.sonymobile.sunlightbooster
com.sonymobile.superstamina
com.sonymobile.support
com.sonymobile.susrescheck
com.sonymobile.swiqisystemservice
com.sonymobile.telephony.extension
com.sonymobile.transmitpower
com.sonymobile.tvout.wifidisplay
com.sonymobile.updatecenter.config.autoinstall
com.sonymobile.updatecenter.config.latecmz
com.sonymobile.wallpaper.bc
com.sonymobile.wallpaperpicker
com.sonymobile.whitebalance
com.sonymobile.wifi
com.sonymobile.wifi.presetnetwork
com.sonymobile.wifi.product.res.overlay
com.sonymobile.wirelesschargemanager
com.sonymobile.xperiadeviceactions
com.sonymobile.xperiaservices
com.sonymobile.xperiasystemserver
com.sonymobile.xperiasystemserver.platform.overlay
com.sonymobile.xvrservice
org.codeaurora.ims
vendor.qti.hardware.cacert.server
vendor.qti.iwlan
I pasted these adb uninstall commands into the adb shell and rebooted the phone.
Spoiler: adb uninstall commands
Code:
pm uninstall -k --user 0 com.activision.callofduty.shooter
pm uninstall -k --user 0 com.amazon.avod.thirdpartyclient
pm uninstall -k --user 0 com.amazon.clouddrive.photos
pm uninstall -k --user 0 com.amazon.kindle
pm uninstall -k --user 0 com.amazon.mShop.android.shopping
pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1011
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1452
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1492
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1535
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1659
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1713
pm uninstall -k --user 0 com.android.partnerbrowsercustomizations.chromeHomepage.overlay_1974
pm uninstall -k --user 0 com.android.providers.partnerbookmarks
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1011
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1452
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1492
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1526
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1535
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1614
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1615
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1659
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1713
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_1974
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_23
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_32
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_678
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_717
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_760
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_761
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_767
pm uninstall -k --user 0 com.android.providers.partnerbookmarks.overlay_850
pm uninstall -k --user 0 com.android.tidal.campaigninstaller
pm uninstall -k --user 0 com.android.vending
pm uninstall -k --user 0 com.linkedin.android
pm uninstall -k --user 0 com.facebook.appmanager
pm uninstall -k --user 0 com.facebook.katana
pm uninstall -k --user 0 com.facebook.services
pm uninstall -k --user 0 com.facebook.system
pm uninstall -k --user 0 com.google.android.apps.docs
pm uninstall -k --user 0 com.google.android.apps.googleassistant
pm uninstall -k --user 0 com.google.android.apps.maps
pm uninstall -k --user 0 com.google.android.apps.messaging
pm uninstall -k --user 0 com.google.android.apps.photos
pm uninstall -k --user 0 com.google.android.apps.restore
pm uninstall -k --user 0 com.google.android.apps.tachyon
pm uninstall -k --user 0 com.google.android.apps.turbo
pm uninstall -k --user 0 com.google.android.apps.wellbeing
pm uninstall -k --user 0 com.google.android.apps.nbu.files
pm uninstall -k --user 0 com.google.android.calendar
pm uninstall -k --user 0 com.google.android.dialer
pm uninstall -k --user 0 com.google.android.gm
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.google.android.gsf
pm uninstall -k --user 0 com.google.android.ims
pm uninstall -k --user 0 com.google.android.music
pm uninstall -k --user 0 com.google.android.partnersetup
pm uninstall -k --user 0 com.google.android.projection.gearhead
pm uninstall -k --user 0 com.google.android.syncadapters.contacts
pm uninstall -k --user 0 com.google.android.contacts
pm uninstall -k --user 0 com.google.android.videos
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.google.ar.core
pm uninstall -k --user 0 com.google.ar.lens
pm uninstall -k --user 0 com.netflix.mediaclient
pm uninstall -k --user 0 com.sonymobile.dropbox.system
pm uninstall -k --user 0 com.android.hotwordenrollment.okgoogle
pm uninstall -k --user 0 com.android.hotwordenrollment.xgoogle
pm uninstall -k --user 0 com.gameloft.android.ANMP.GloftA9HM
pm uninstall -k --user 0 com.google.android.gms
pm uninstall -k --user 0 com.google.android.gms.location.history
Like the blog post, there are plenty of replacements for the applications I will need. Simple Mobile Tools has a phone dialer and a contacts manager. GMaps can be reasonably replaced by HereWeGo. QKSMS for messaging. And more.
Now I will install Blokada NetGuard to see what else is communicating with Google behind my back and see how to excise any of those, then put it on the wireless. Soon to follow will be inserting my SIM and trying out the phone. Fingers crossed and I will report back in a couple of days, on the other side of AT&T 3G.
Just to note, sooooo many applications, including Sony's apps, attempt to access Google.
As well, while I was testing apps and data the system decided to update. Which turned out to be an upgrade to Android 12. Thankfully, none of the applications I uninstalled came back.
There must be something lingering in the system. Apps which worked on an AOSP build with no Google services at all continuously crash: AcuRite, Accuweather, and Opera. The previous two would complain they could not work without Google Play Services but worked fine after tapping OK. Now they just crash. This is disappointing.
All has been going well. The apps that do not work are not a big deal, but Software Update keeps crashing. I used "App Inspector" to help figure out what is going on, and it appears the Software Update app is making a call to com.google.android.gms (Google Mobile Services,) which I have uninstalled. Does this seem reasonable to anyone?
It concerns me that I may not be able to receive future updates if I do not have GMS operational on my phone.
SEHoldOver said:
All has been going well. The apps that do not work are not a big deal, but Software Update keeps crashing. I used "App Inspector" to help figure out what is going on, and it appears the Software Update app is making a call to com.google.android.gms (Google Mobile Services,) which I have uninstalled. Does this seem reasonable to anyone?
It concerns me that I may not be able to receive future updates if I do not have GMS operational on my phone.
Click to expand...
Click to collapse
You can always manually update newest firmware with sonys EMMA (https://developer.sony.com/develop/open-devices/get-started/flash-tool/download-flash-tool/). Not as good as auto updates but if you just remember to do it often it's good enough.
It's possible to de-google nearly completely. With root+magisk+Debloater and Systemizer, i've replaced most apps for their old Sony equivalents (including Album, Contacts, Phone, Calculator). It takes a little trial and error with versions to get it fully working but worth the effort.
Haven't managed to get rid of Messages yet for Sony's old Messaging.
Then I also use MicroG so I get Whatsapp push notifications and offline cell-based location, but it's not compulsory.

Categories

Resources