I can uninstall an app on the device from my computer using adb uninstall , but I\'d like to do the same with a script on the actual device.
adb uninstall
Simple command to remove any app from the device, try this:
pm uninstall --user 0
This command will forcefully remove that app from the device.