Skip to main content

All Questions

Tagged with
0 votes
0 answers
532 views

Why can't I uninstall/disable all bloatware through ADB without root?

I recently tried to disable bloatware in my cheap Vivo and Oppo smartphones. These apps named Themes, Game Center, etc. keep giving me notifications that can't be disabled through the UI. The ...
dictum's user avatar
  • 11
0 votes
1 answer
38 views

Reinstall apps/services via phone directly?

I uninstalled certain apps/services via adb, then disabled the USB Debugging option. After restart the phone's settings option is not working. Please suggest how to enable developer options, usb ...
Abhishek Jain's user avatar
2 votes
0 answers
140 views

Turn an old Samsung Galaxy S6 into a GameBoy/eBook reader

I have a Galaxy Tab S6 (I know, old...) and I would like to turn it into something that, once turned on, will do two things: GameBoy (via an emulator) Ebook (via the Kindle reader) I want to make ...
Merc's user avatar
  • 121
3 votes
0 answers
2k views

What EXACTLY does "pm uninstall" do on an unrooted Android 9.0 device?

There seems to be confusion regarding the behavior of pm uninstall from the ADB shell, see also here and here. Question: What configuration files does pm uninstall write to, is it /data/system/...
srhslvmn's user avatar
  • 289
0 votes
0 answers
3k views

How to enable and disable app using LADB?

So far, I only could find this related discussion from this site regarding disabling app on android by ADB, but I'm using LADB app and confirm whether these commands are correct or not since the ...
user516076's user avatar
0 votes
0 answers
3k views

pm Disable activity

Have been asked many times, how to block the installation of applications from an apk file, how to block the package installer ... The common answer is that it is impossible because even if you will ...
Joe's user avatar
  • 115
0 votes
1 answer
612 views

Does `pm uninstall` also automatically execute `force-stop` and `clear` on a non-rooted device?

This is for non-rooted stock ROM's. To get rid of one single app, I've been executing the following commands: (Step 1) disable-user (2) force-stop (3) clear (4) uninstall (5) clear Steps (1) and (2) ...
jemosan374's user avatar
0 votes
1 answer
480 views

How to disable an activity containing a special character?

What is the correct way to disable the activity: com.android.settings/.Settings$SystemDashboardActivity When I try to disable it via pm disable command it disables the whole Settings activity and ...
Year1917's user avatar
1 vote
1 answer
6k views

list disable package feature/component

we can use pm list packages -d to list disabled packages. but how can I list disabled feature/component inside a package? for example I disable all fitness related stuff from gms pm disable com....
rnd_nr_gen's user avatar
4 votes
1 answer
15k views

How can I see all installed packages, including those that have been hidden?

Recently I used ADB to hide a bunch of packages on an old phone (Verizon 2013 Moto X) I intend to use for development. I hid most of the phone-related packages, including the SIM Toolkit and the ...
Alex Dueppen's user avatar
0 votes
1 answer
4k views

Remove Backup and Factory reset option from Settings app [duplicate]

I want to remove some features from my settings app (device is rooted) I used adb shell pm disable 'com.android.settings/.Settings\$SecuritySettingsActivity' to disable security settings and it ...
harpratap's user avatar
  • 626
7 votes
2 answers
16k views

How to check if a package is enabled via shell?

I have been writing a tasker task to enable/disable a package. I know adb shell pm enable com.android.contacts will enable the package and adb shell pm disable com.android.contacts will ...
Srikanth R's user avatar