从 4.2 开始,使用以下代码安装 APK,如果 APK 版本低于当前安装的版本,则安装失败。是否有允许降级的 PutExtra()?
File file = new File(dir, "App.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);
还是我需要以不同的方式来做?