Loving my Kompakt so far, but just one question - how would I go about uninstalling a sideloaded app?
1 Like
i personally sideloaded app manager and from there i could uninstall the apps Releases · MuntashirAkon/AppManager · GitHub
but i think u can you also adb, but i currently dont know the command
1 Like
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
Also if you download an app store like Aurora you should be able to use it to uninstall most apps
2 Likes