My external SD card seems to be broken. I removed it and inserted a new one.
Now the apps don't work any more. That's all right.
But: I can't uninstall or re-install the apps any more.
If I try to, then the app store seems to crash. I just get the message "App store terminated" (translated from german to english).
It's ok that the data from the sd card is lost.
But: How to get the apps working again?
adb uninstall
(from your computer, if you've installed ADB stuff) orpm uninstall
(from a terminal app, most likely requires root). – Izzy May 15 '16 at 10:56adb uninstall
is. – guettli May 16 '16 at 08:20pm uninstall
(requires the app's package name as parameter, e.g.pm uninstall com.foobar.app
)? Did it work? Is your device rooted? – Izzy May 16 '16 at 12:15adb uninstall com.foobar.app
should work. To avoid unnecessary large installs, you could take a look at my answer here for a minimal installation. – Izzy May 17 '16 at 10:12