在我的应用程序中,我在应用程序启动时安装其他apks以创建运行时环境。我还有3个apks可以在应用程序启动时安装,我想在运行时这样做,但我不想要apks的任何安装消息。安装应该在后台自动完成。感谢。
答案 0 :(得分:0)
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "app.apk")),"application/vnd.android.package-archive");
startActivity(intent);