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

前端 未结 8 1684
死守一世寂寞
死守一世寂寞 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

    To forcefully uninstall the system user apps:

    Use:

    adb shell pm uninstall --user 0 
    

提交回复
热议问题