Created
December 11, 2018 08:38
-
-
Save hasenbalg/6cc68b78795c4df754e9c22517d05f10 to your computer and use it in GitHub Desktop.
adb uninstall shitware
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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