Skip to content

Instantly share code, notes, and snippets.

@hasenbalg
Created December 11, 2018 08:38
Show Gist options
  • Save hasenbalg/6cc68b78795c4df754e9c22517d05f10 to your computer and use it in GitHub Desktop.
Save hasenbalg/6cc68b78795c4df754e9c22517d05f10 to your computer and use it in GitHub Desktop.
adb uninstall shitware
packagenames can be found on the download page of the app on apkmirror.com e.g. https://www.apkmirror.com/apk/sony-mobile-communications/whats-new/whats-new-4-2-a-0-5-release/whats-new-4-2-a-0-5-android-apk-download/
// list all packages containing 'sideview'
adb shell 'pm list packages -f' | grep -e sideview
// remove package
adb shell 'pm uninstall --user 0 com.sony.tvsideview.phone'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment