How to uninstall android system app programmatically?

前端 未结 3 2038
终归单人心
终归单人心 2021-01-16 06:53

I can get a list of installed apps (both user and system apps). I am also able to uninstall user apps, however, not able to uninstall system apps.

Is there any way t

3条回答
  •  时光说笑
    2021-01-16 07:36

    You need to have root access in order to remove system or vendor apps.

    $ su
    # rm /data/system/application.package.apk
    # rm /data/data/application.package
    

提交回复
热议问题