1.AndroidManifest权限设置
<!-- android8.0安装APK必备权限 -->
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
2.创建 android7.0 文件提供者
- 在res文件夹下创建xml文件夹
- 在xml文件夹下创建 file_paths.xml 文件 文件内容如下:
<?xml version="1.0" encoding="utf-8"?> <paths xmlns:android="http://schemas.android.com/apk/res/android"> <!-- 代表设备的根目录 new File("/") --> <root-path name="root" path="" /> <!-- 代表 context.getFileDir() --> <files-path name="files" path="" /> <!-- 代表 context.getCacheDir() --> <cache-path name="cache" path="" /> <!-- 代表 Environment.getExternalStorageDirectory() --> <external-path name="external" path="" /> <!-- 代表 context.getExternalFilesDirs() --> <external-files-path name="name" path="path" /> <!-- 代表 getExternalCacheDirs() --> <external-cache-path name="name" path="path" /> </paths>
代表的目录即为:<external-path name="external" path="pics"/>
Environment.getExternalStorageDirectory()/pics
- 在AndroidManifest.xml添加文件提供者
<provider android:name="android.support.v4.content.FileProvider" android:authorities="你的包名.fileProvider" android:exported="false" android:grantUriPermissions="true"> <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" /> </provider>
- 放大g
- gy
3.正式安装
private void detectionVersions() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
//获取是否有权限
boolean jurisdiction = getPackageManager().canRequestPackageInstalls();
if (jurisdiction) {
//开始安装
installApk();
} else {
//没有权限,申请权限
ActivityCompat.requestPermissions((Activity) MainActivity.this, new String[]{android.Manifest.permission.REQUEST_INSTALL_PACKAGES}, 3);
}
} else {
//开始安装
installApk();
}
}
//安装应用
public void installApk(File binaryFile) {
//判断版本大于等于7.0
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
String applicationId = getPackageName() + ".fileProvider";
Uri uri = FileProvider.getUriForFile(MainActivity.this, applicationId, binaryFile);
//给目标应用一个临时授权
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.setDataAndType(uri, "application/vnd.android.package-archive");
startActivity(intent);
} else {
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(binaryFile);
intent.setDataAndType(uri, "application/vnd.android.package-archive");
startActivity(intent);
}
}