Android呼叫系統安裝apk的注意事項
阿新 • • 發佈:2019-01-07
對於7.0及其以上的裝置我們需要做如下操作:
1.在manifest中註冊FileProvider
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
2、指定可用的檔案路徑
在專案的res目錄下,建立xml資料夾,並新建一個file_paths.xml檔案。通過這個檔案來指定檔案路徑:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<!--Context.getFilesDir() 位於/data/data/安裝目錄-->
<files-path name="internalPath" path="file" />
<!--Context.getCacheDir()-->
<cache-path name="cachePath" path="file" />
<!--Environment.getExternalStorageDirectory()-->
<external-path name="externalPath" path="file" />
<!--Context.getExternalFilesDir(null)-->
<external-files-path name="externalFPath" path="file" />
</paths>
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中新增一條許可權:
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>