-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
7.1.3版本 微信分享单图类型 无法唤起微信 其余的分享类型都可以(分享内容均为demo中的内容) 回调只能走到onStart #91
Comments
我也遇到了这个问题 |
是androidx.core.content.FileProvider 这个的原因 |
我也遇到这个问题了 请教大佬能告知一下是怎么解决的吗? @ThreeAbs |
var image: UMImage = UMImage(this, url)
var image1: UMImage = UMImage(this, url)
image.setThumb(image1)
image.compressStyle = UMImage.CompressStyle.SCALE
ShareAction(this)
.setPlatform(platform)
.withText("")
.withMedia(image)
.share()
implementation "com.umeng.umsdk:share-core:7.1.4"
implementation "com.umeng.umsdk:share-board:7.1.4"
implementation "com.umeng.umsdk:share-wx:7.1.4"
发自 Outlook<http://aka.ms/weboutlook>
…________________________________
发件人: FFFFFFFFFFj ***@***.***>
发送时间: 2021年7月7日 11:02
收件人: umeng/MultiFunctionAndroidDemo ***@***.***>
抄送: leiyaqiang ***@***.***>; Comment ***@***.***>
主题: Re: [umeng/MultiFunctionAndroidDemo] 7.1.3版本 微信分享单图类型 无法唤起微信 其余的分享类型都可以(分享内容均为demo中的内容) 回调只能走到onStart (#91)
我也遇到这个问题了 请教大佬能告知一下是怎么解决的吗? @ThreeAbs<https://github.com/ThreeAbs>
―
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#91 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGLZ2ET33VXEBVHL25MI5U3TWO7UPANCNFSM46JLA6DQ>.
|
感谢大佬回复 我的代码和你一样 分享图片还是不会吊起微信 我看了友盟的日志 是报这个问题 但是不着调怎么解决。。。 |
设置了也不行 |
|
我也遇到了同样的问题;即使在设置了fileprovider的情况下。 version 7.1.5 |
已经找到问题;
我是从6.x 升至 9.x版本;
|
加我QQ吧,2763156116
发自 Outlook<http://aka.ms/weboutlook>
…________________________________
发件人: xwcc ***@***.***>
发送时间: 2021年8月9日 9:56
收件人: umeng/MultiFunctionAndroidDemo ***@***.***>
抄送: leiyaqiang ***@***.***>; Comment ***@***.***>
主题: Re: [umeng/MultiFunctionAndroidDemo] 7.1.3版本 微信分享单图类型 无法唤起微信 其余的分享类型都可以(分享内容均为demo中的内容) 回调只能走到onStart (#91)
已经找到问题;
1. 检查 manifest 里面是否设置了 fileprovider
2. 检查app init 的时候是否设置了.fileprovider 后缀
我是从6.x 升至 9.x版本;
目前看来是之前sdk内部帮我们凭拼接了.fileprovider 后缀,后续的版本则没有帮我们拼接了;
// 加上后缀即可
final String fileProvider = application.getPackageName() + ".fileprovider";
UMConfigure.setLogEnabled(BuildConfig.DEBUG);
PlatformConfig.setWXFileProvider(fileProvider);
PlatformConfig.setQQFileProvider(fileProvider);
PlatformConfig.setSinaFileProvider(fileProvider);
―
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#91 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGLZ2EWKUJMKHUKCN4RWC23T34YUTANCNFSM46JLA6DQ>.
Triage notifications on the go with GitHub Mobile for iOS<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android<https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email>.
|
我最后是卸载app,重要运行就可以调起了。。
发自我的iPhone
…------------------ 原始邮件 ------------------
发件人: xwcc ***@***.***>
发送时间: 2021年8月9日 09:45
收件人: umeng/MultiFunctionAndroidDemo ***@***.***>
抄送: jarvan11 ***@***.***>, Comment ***@***.***>
主题: 回复:[umeng/MultiFunctionAndroidDemo] 7.1.3版本 微信分享单图类型 无法唤起微信 其余的分享类型都可以(分享内容均为demo中的内容) 回调只能走到onStart (#91)
我也遇到了同样的问题;即使在设置了fileprovider的情况下。 version 7.1.5
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
哪位解决了?是必须要v4的包还是androidx的包也可以?我咋看不懂上面各位说啥呢 T T |
搞明白了。就算用androidx的fileprovider 也要加implementation 'com.android.support:support-v4:30.0.0' 的依赖才行 |
是的,这里的坑点就是androidx项目需要引入supprot-v4包 |
我发现我们不用引用support-v4包,support-v4包下的FileProvider就是一个类,我们先创建同样的包名路径(android.support.v4.content),然后把代码copy一下就可以了
|
其中分享图片的两个 都无法唤起微信 最下边分享Web的方式可以正常使用 这是什么原因啊?
The text was updated successfully, but these errors were encountered: