我打算自行托管我的应用程序,但不确定实现自动更新的最佳方式是什么。
我打算做以下事情:
我的问题是如何从代码初始化更新?我理解用户需要确认此操作,但我想尽可能多地完成自己的工作。我是否需要特定的意图来执行此操作?
我想问题是我如何安装APK programmaticaly如果它已经在设备上..
答案 0 :(得分:3)
我想问题是如何安装APK programmaticaly如果是的话 已经在设备上..
您可以使用以下代码启动安装:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive");
startActivity(intent);
上述代码取自对类似问题的回答:automatic install of apk