我知道我可以通过以下传递APK文件URI的代码以编程方式安装 Android 应用程序。我可以在不传递 APK 文件 URI 的情况下安装应用程序吗?例如,获取 APK 文件的字节数组并安装它?
File appFile = new File("application.apk");
Intent installIntent = new Intent(Intent.ACTION_VIEW);
installIntent.setDataAndType(Uri.fromFile(appFile),"application/vnd.android.package-archive");
startActivity(installIntent);