我想更新我的程序。因此,当它启动程序时,我会检查是否有任何可用的更新。如果确实如此,则下载并尝试使用以下内容进行安装:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "own.apk")), "application/vnd.android.package-archive");
startActivity(intent);
该程序到达安装对话框,但单击它时程序关闭。我想因为我用相同的程序重新安装。哪些是重新安装或更改为新更新的解决方案?