Member - OP
Thanks Meter 6
Posts: 50
Join Date: Jun 2010
Location: Staten Island, NY
|
Uninstalling apps
Courtesy of Zedley...
zedley
Junior Member Join Date: Nov 2010
Posts: 6
Uninstalling
--------------------------------------------------------------------------------
For those trying to uninstall stuff, a Q&D way of doing it:
Code:
adb shell ls /data/app ---- to get the full name of the apk
adb shell rm -r /data/app/#APPNAME
I'm not sure about dependencies and whatnot, but it got the app out of extras (after a reboot) and removed the apk off my device, which is all I care about at this point.
|