You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which Flutter do you use?
Flutter (Channel stable, 3.22.2, on macOS 14.2.1 23C71 darwin-x64, locale zh-Hans-CN)
Xcode - develop for iOS and macOS (Xcode 15.3)
Describe the bug
Universal link 的冲突
To Reproduce
覆盖这个东西,让应用能够拿到并解析 Universal Link 的路径
3. 应用能够正常拿到路径,但是 fluwx 拿不到了,也就是这里的代码 ,导致从微信登录跳回来时,fluwx 并不能正常返回code
https://github.com/OpenFlutter/fluwx/blob/main/ios/Classes/FluwxPlugin.m#L448
Which version of Fluwx do you use?
5.3.1
Which device do you run on
iPhone se
Which Flutter do you use?
Flutter (Channel stable, 3.22.2, on macOS 14.2.1 23C71 darwin-x64, locale zh-Hans-CN)
Xcode - develop for iOS and macOS (Xcode 15.3)
可能的解决办法
~/ios/Classes/public/FluwxPlugin.h
#import <Flutter/Flutter.h>
@interface FluwxPlugin : NSObject
@EnD
在这个文件中,增加一些公开的方法,让外部能够手动调用 [WXApi handleOpenUniversalLink:userActivity delegate:self] 这一行代码
或者在 ios/Classes/FluwxPlugin.m 中添加一些监听器,让我外部代码能触发已添加的监听器,从而触发 [WXApi handleOpenUniversalLink:userActivity delegate:self]
The text was updated successfully, but these errors were encountered: