Intent apkIntent = new Intent(Intent.ACTION_VIEW);
apkIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
apkIntent.setDataAndType(
Uri.fromFile(new File(file.getAbsolutePath())),
"application/vnd.android.package-archive");
startActivity(apkIntent);
apkIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
apkIntent.setDataAndType(
Uri.fromFile(new File(file.getAbsolutePath())),
"application/vnd.android.package-archive");
startActivity(apkIntent);