无需询问用户即可以编程方式卸载其

时间:2015-06-09 10:06:55

标签: android web-applications uninstall android-applicationinfo

我有

的系统级应用

设备未植根! Manifest中包含INSTALL_PACKAGESACTION_UNINSTALL_PACKAGE权限

我可以安静地安装和卸载任何apk吗?

1 个答案:

答案 0 :(得分:2)

我不认为您可以在没有用户确认的情况下卸载应用

但卸载应用使用以下代码。

Intent intent = new Intent(Intent.ACTION_DELETE);
                    intent.setData(Uri.parse("package:com.example.getgoogleaccount"));
                    startActivity(intent);