Is it possible to programmatically uninstall a package in Android

后端 未结 4 1012
长发绾君心
长发绾君心 2020-12-01 12:16

Can a package uninstall itself? Can a package uninstall another package if they share the same userId and signature?

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-01 12:22

    A 3rd party app cannot install or uninstall any other packages programmatically, that would be a security risk for Android. However a 3rd party app can ask the Android OS to install or uninstall a package using intents, this question should provide more complete information:

    install / uninstall APKs programmatically (PackageManager vs Intents)

提交回复
热议问题