美文网首页
android 分享图片到微信报错

android 分享图片到微信报错

作者: 飞不起的小鸟 | 来源:发表于2020-08-19 15:50 被阅读0次

    解决不能分享图片到微信,所报的错

    android.os.FileUriExposedException: file:///storage/emulated/0/xxx/xxx.jpg exposed beyond app through ClipData.Item.getUri()
    

    在onCreate加入一下代码

            StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder();
            StrictMode.setVmPolicy(builder.build());
            builder.detectFileUriExposure();
    

    相关文章

      网友评论

          本文标题:android 分享图片到微信报错

          本文链接:https://www.haomeiwen.com/subject/tgxdjktx.html