无需用户交互即可卸载Android应用程序

时间:2017-09-28 10:48:04

标签: android android-activity

我正在开发android系统应用程序。无需用户交互即可直接卸载其他应用程序。 我写了代码和平,

private void UninsallApp() {
    Uri packageURI = Uri.parse("package:"+"com.example.shortcutcreation");
    Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageURI);
    startActivity(uninstallIntent);
} 

但在卸载应用程序对话框之前就好了 enter image description here

你能帮帮我吗......

1 个答案:

答案 0 :(得分:0)

我得到了这个问题的解决方案。 我已经破解了代码AOSP框架级别(android.content.pm)并签名为ploatform apk ... 最后app正在默默卸载......

String cmd =“sh / system / bin / pm uninstall”+ packageName;

private void axWindowsMediaPlayer1_PlayStateChange(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e)
{
    if(axWindowsMediaPlayer1.fullScreen == true)
    {
        axWindowsMediaPlayer1.uiMode = "Full";
    }

    if (axWindowsMediaPlayer1.fullScreen == false)
    {
        axWindowsMediaPlayer1.uiMode = "Mini";
    }
}