對于7.0及其以上的裝置我們需要做如下操作:
1.在manifest中注冊FileProvider
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/file_paths" />
2、指定可用的檔案路徑
在項目的res目錄下,建立xml檔案夾,并建立一個file_paths.xml檔案。通過這個檔案來指定檔案路徑:<?xml version="1.0" encoding="utf-8"?>
3、調用代碼:File apkFile = new File(apkPath);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Uri contentUri = FileProvider.getUriForFile(this, BuildConfig.FileProvider,apkFile);
intent.setDataAndType(contentUri, "application/vnd.android.package-archive");
} else {
intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
}
startActivity(intent);
一般網上的教程就到此為止,但是現在部分手機出于安全考慮,禁止了APK自由調用安裝程式,是以,還需要在AndroidManifest中添加一條權限: