当前位置:   article > 正文

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

android api24

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

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

  1. public static boolean installApk(Context context, String apkPath) {
  2. File apkFile = new File(apkPath);
  3. if(!apkFile.exists() || !apkFile.isFile()) return false;
  4. Intent installIntent = new Intent(Intent.ACTION_VIEW);
  5. installIntent.setDataAndType(Uri.parse("file://" + apkFile.toString()), "application/vnd.android.package-archive");
  6. installIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  7. context.startActivity(installIntent);
  8. // GNavigationBar.show(context); ///< show navigation bar
  9. // android.os.Process.killProcess(android.os.Process.myPid());
  10. return true;
  11. }

会出现如下异常:

    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方式解决:

  1. public static void installMyApk(Context context, String path) {
  2. Intent intent = new Intent(Intent.ACTION_VIEW);
  3. //判断是否是AndroidN以及更高的版本
  4. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
  5. intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
  6. Uri contentUri = FileProvider.getUriForFile(
  7. context,
  8. BuildConfig.APPLICATION_ID + ".fileProvider",
  9. new File(path));
  10. intent.setDataAndType(contentUri, "application/vnd.android.package-archive");
  11. } else {
  12. intent.setDataAndType(
  13. Uri.fromFile(new File(path)),
  14. "application/vnd.android.package-archive");
  15. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  16. }
  17. context.startActivity(intent);
  18. }

AndroidManifest.xml中的配置:

  1. <!--Android 7.0(api 24)以上使用file://访问文件需要用FileProvider方式-->
  2. <!--file_paths为配置的可访问路径-->
  3. <provider
  4. android:name="androidx.core.content.FileProvider"
  5. android:authorities="com.xx.xxx.fileProvider"
  6. android:grantUriPermissions="true"
  7. android:exported="false">
  8. <meta-data
  9. android:name="android.support.FILE_PROVIDER_PATHS"
  10. android:resource="@xml/file_paths" />
  11. </provider>

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

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <paths>
  3. <!-- <external-path path="Android/data/app的包名/" name="files_root" />-->
  4. <external-path path="." name="external_storage_root" />
  5. </paths>

android 8.0系统调用安装APK_xdy1120的博客-CSDN博客_android调用app安装 中说要配置一下权限:

  1. <!--安卓8.0打开apk安装更新-->
  2. <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>

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

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

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

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

参考链接

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/150234
推荐阅读
相关标签
  

闽ICP备14008679号