* 安装apk
*/
private void installApk() {
// 获取当前sdcard存储路径
File apkfile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/updateApkFile/" + info.getApkName());
if (!apkfile.exists()) {
return;
}
Intent i = new Intent(Intent.ACTION_VIEW);
// 安装,如果签名不一致,可能出现程序未安装提示
i.setDataAndType(Uri.fromFile(new File(apkfile.getAbsolutePath())), "application/vnd.android.package-archive");
mContext.startActivity(i);
}
时间: 2024-09-30 15:36:31