Java tutorial
//package com.java2s; /** * Copyright 2014 sailaway(https://github.com/sailaway) * * Licensed under theGNU GENERAL PUBLIC LICENSE Version 3 (the "License"); * Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. * */ import java.io.File; import android.content.Context; import android.content.Intent; import android.net.Uri; public class Main { /** * call system to install the APK file * */ public static void installAPKFile(Context context, File file) { Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive"); context.startActivity(intent); } }