由于Android 7.0后修改了文件訪問機制僧家,導(dǎo)致下載apk后直接打開安裝會導(dǎo)致程序崩潰冬念。
解決方案如下:
AndroidManifest.xml里面增加
<provider android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
在資源文件xml文件夾下增加provider_paths文件客燕,內(nèi)容如下:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
< external-path name="external_files"?
path="."/>
</paths>
然后打開下載apk的代碼如下:
public static voidinstallApk(Context context,File apk) {
Intent install =null;
if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.N) {
Uri uri = FileProvider.getUriForFile(context,BuildConfig.APPLICATION_ID+
".provider",apk);
install =newIntent(Intent.ACTION_INSTALL_PACKAGE);
install.setData(uri);
install.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
}else{
Intent intent =newIntent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(apk),"application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}
context.startActivity(install);
}
重要的是這句install.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);,如果不加内边,任然無法打開票灰。