How to uninstall own app from /system/app?

前端 未结 6 2020
执念已碎
执念已碎 2020-12-16 14:26

I\'m able to install own application into /system/app using adb shell commands. But how to uninstall it? Is there any commands to do it? My phone is rooted.

6条回答
  •  清歌不尽
    2020-12-16 14:45

    Uninstall Android App via adb


    Refer : xda

    adb devices
    
    adb shell
    
    pm list packages
    
    pm uninstall -k --user 0 name of package
    

提交回复
热议问题