Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Android remove unwanted apps
- #list installed apps
- adb shell pm list packages |cut -d\: -f2
- #remove app
- # Google Chrome
- adb shell pm uninstall --user 0 com.android.chrome
- #search and remove app with fzf
- adb shell pm uninstall --user 0 $(adb shell pm list packages |cut -d\: -f2|fzf)
- #Other examples
- # Google Chrome
- adb shell pm uninstall --user 0 com.android.chrome
- # Gmail
- adb shell pm uninstall --user 0 com.google.android.gm
- # Google Play Films et Séries
- adb shell pm uninstall --user 0 com.google.android.videos
- # Youtube
- adb shell pm uninstall --user 0 com.google.android.youtube
- # Google Play Music
- adb shell pm uninstall --user 0 com.google.android.music
- # Google Hangouts
- adb shell pm uninstall --user 0 com.google.android.talk
- # Google Keep
- adb shell pm uninstall --user 0 com.google.android.keep
- # Google Drive
- adb shell pm uninstall --user 0 com.google.android.apps.docs
- # Google Photos
- adb shell pm uninstall --user 0 com.google.android.apps.photos
- # Google Cloud Print
- adb shell pm uninstall --user 0 com.google.android.apps.cloudprint
- # Google Actualités et météos
- adb shell pm uninstall --user 0 com.google.android.apps.genie.geniewidget
- # Application Google
- adb shell pm uninstall --user 0 com.google.android.googlequicksearchbox
- ####Reinstall App######
- adb shell cmd package install-existing com.android.chrome
Add Comment
Please, Sign In to add comment