Uninstalling sideloaded apps

if using adb, search for your app name

adb shell pm list packages | grep -i <package name> (of your not using mac or linux, dont add |grep <package name>
example adb shell pm list packages | grep -i molly gives the following as i have calander installed package:im.molly.app

find your package name then uninstall with the following
adb uninstall im.molly.app

2 Likes