- 创建一个类继承FileProvider。在Androidmanifest中注册这个类;
<provider
android:name=".***.MyFileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"/>
</provider>
其中${applicationId}代表的是build.gradle中的applicationId包名,file_paths是res文件夹下的xml文件
- 在res中新建一个xml文件夹,在创建一个file_paths.xml文件;
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<!--<external-cache-path name="my_kxg" path="file" />-->
<external-path
name="my_apk"
path="." />
</paths>
- 安装方法,
/**
* 安装APP
*
* @param context 上下文
* @param filePath 文件路径
* @param fileName 文件名称--(test.apk)
*/
private static void installApp(Context context, String filePath, String fileName) {
File apkFile=new File(filePath + "/" + fileName);
if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.N) {//判读版本是否在7.0以上
String packageName =SystemInfoUtils.getPackageName(context) + ".fileprovider";
Uri apkUri = FileProvider.getUriForFile(context, packageName, apkFile);
Intent install = new Intent(Intent.ACTION_VIEW);
install.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
install.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
install.setDataAndType(apkUri, "application/vnd.android.package-archive");
context.startActivity(install);
} else{
Intent install = new Intent(Intent.ACTION_VIEW);
install.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
install.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(install);
}
}
SystemInfoUtils.getPackageName(context)获取项目的包名,也就是build.gradle中的applicationId。。
好啦现在可以愉快的安装apk了。