Disable Android system packages without root: Difference between revisions
From WickyWiki
Created page with "Category:Android Category:202101 This method allows you to have more control over what packages are active. Packages are not really removed but instead 'uninstalled' f..." |
mNo edit summary |
||
| Line 7: | Line 7: | ||
Steps: | Steps: | ||
# Download the latest Android SDK Platform-tools and extract the zip. You don't need to | # Download the latest Android SDK Platform-tools and extract the zip. You don't need to install. | ||
#* https://developer.android.com/studio/releases/platform-tools | #* https://developer.android.com/studio/releases/platform-tools | ||
# | # You might need your device USB drivers for your desktop system. For example: | ||
#* https://www.samsung.com/us/business/support/owners/product/galaxy-tab-s-10-5-wi-fi/ | |||
# Open your device Settings and turn on USB debugging from Developer options. | # Open your device Settings and turn on USB debugging from Developer options. | ||
# Increase the device Screen Timeout duration. | # Increase the device Screen Timeout duration. | ||
| Line 40: | Line 41: | ||
</source> | </source> | ||
Overview of packages you | Overview of packages with some info. Be warned that you can make it difficult for yourself is you disable packages: | ||
* https://technastic.com/remove-samsung-bloatware-safe-to-remove-apps/ | * https://technastic.com/remove-samsung-bloatware-safe-to-remove-apps/ | ||
Revision as of 22:12, 6 January 2021
This method allows you to have more control over what packages are active. Packages are not really removed but instead 'uninstalled' for user '0'.
More info:
Steps:
- Download the latest Android SDK Platform-tools and extract the zip. You don't need to install.
- You might need your device USB drivers for your desktop system. For example:
- Open your device Settings and turn on USB debugging from Developer options.
- Increase the device Screen Timeout duration.
- Now connect your Android device to the computer via USB.
- DOS Command prompt:
- cd /d d:\platform-tools\
- adb devices
- allow on device
Adb commands
#adb command prompt adb shell #list 3rd party packages adb shell "pm list packages -3" > output.txt #list system packages adb shell "pm list packages -s" > output.txt #uninstall an app with its data pm uninstall --user 0 <package name> #uninstall an app but keep its data pm uninstall -k --user 0 <package name> #reinstall cmd package install-existing <package name>
Overview of packages with some info. Be warned that you can make it difficult for yourself is you disable packages:
I have disabled these (Galaxy S8):
# Bixby pm uninstall --user 0 com.samsung.android.bixby.wakeup # Bixby homepage launcher pm uninstall --user 0 com.samsung.android.app.spage # Bixby features pm uninstall --user 0 com.samsung.android.bixby.service # Bixby Vision pm uninstall --user 0 com.samsung.android.visionintelligence # Bixby Voice pm uninstall --user 0 com.samsung.android.bixby.agent # Bixby debug app pm uninstall --user 0 com.samsung.android.bixby.agent.dummy