I can delete apps (that I code myself and install through the SDK) using this command:
adb uninstall com.company.apppackage
How do I un
try:
adb root
Then enter adb shell
adb shell
Find out your apps package name:
pm list packages | grep "your app name/something related to your app name"
Then use:
adb uninstall
OR
pm uninstall