How to uninstall an android app from command line on the device

前端 未结 8 1685
死守一世寂寞
死守一世寂寞 2020-12-12 17:15

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.

8条回答
  •  时光说笑
    2020-12-12 17:51

    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.

提交回复
热议问题