- 首先我有一个服务器。我检查服务器是否有任何
new apk
文件我下载并尝试安装。 - 如果服务器有,
new version of apk file
那么我想更新我的 .apk 文件。 - 我想在没有用户交互的情况下安装/更新。这可能吗?
- 如果需要用户交互,那么我该如何安装/更新 .apk 文件。
我对此没有更多的想法。
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "jarviz.apk")), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
但这不起作用。当我调试时,我看不到任何错误,但它没有安装。我该怎么做。抱歉英语不好。