Android 7.0(API 24)以上调用系统安装包问题

Android 7.0之后对于文件访问安全性加强,一些旧的调用方法也发生了结果异常。

Android 7.0(API 24)以前可用的安装方法

    public static boolean installApk(Context context, String apkPath) {
        File apkFile = new File(apkPath);
        if(!apkFile.exists() || !apkFile.isFile()) return false;

        Intent installIntent = new Intent(Intent.ACTION_VIEW);
        installIntent.setDataAndType(Uri.parse("file://" + apkFile.toString()), "application/vnd.android.package-archive");
        installIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(installIntent);

//        GNavigationBar.show(context);   ///< show navigation bar
//        android.os.Process.killProcess(android.os.Process.myPid());
        return true;
    }

会出现如下异常:

    android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/com.xx.xxx/cache/imrider.apk exposed beyond app through Intent.getData()

Android 7.0(API 24)以后可用的安装方法

使用自定义provider方式解决:

 public static void installMyApk(Context context, String path) {
        Intent intent = new Intent(Intent.ACTION_VIEW);
        //判断是否是AndroidN以及更高的版本
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            Uri contentUri = FileProvider.getUriForFile(
                    context,
                    BuildConfig.APPLICATION_ID + ".fileProvider",
                    new File(path));
            intent.setDataAndType(contentUri, "application/vnd.android.package-archive");
        } else {
            intent.setDataAndType(
                    Uri.fromFile(new File(path)),
                    "application/vnd.android.package-archive");
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        }
        context.startActivity(intent);
    }

AndroidManifest.xml中的配置:

        
        
        
            
        

资源文件中新建file_paths.xml,用于存放可以访问的文件路径定义等:




    

https://blog.csdn.net/xdy1120/article/details/99180956 中说要配置一下权限:



应该是配合他自己的代码使用的:

	private void openFile(final Context context) {
		//判读版本是否在8.0以上
		if (Build.VERSION.SDK_INT >= 26) {
			//来判断应用是否有权限安装apk
			boolean installAllowed= context.getPackageManager().canRequestPackageInstalls();
			if(installAllowed){
				installApk(context);
			}else {
				installApk(context);
				new Handler(Looper.getMainLooper()).post(new Runnable() {
					@Override
					public void run() {
						ToastUtil.ToastShort(context,"请设置开启允许安装未知应用");
						//此处只做提示,系统会自动弹框提醒,并可跳转开启
//						Intent intent = new Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES, Uri.parse("package:" + context.getPackageName()));
//						context.startActivity(intent);
					}
				});
			}
		} else {
			installApk(context);
		}
	}

注:上述部分不写应该也是没有关系的。

Android碎片化严重,系统变更有时候会带来很多意外结果。

 

参考链接

  • Android android.uid.system的应用调用安装apk失败
  • android 8.0系统调用安装APK

 

 

你可能感兴趣的:(D0021,Android,apk安装)