Shingo Sato

Results 4 comments of Shingo Sato

I have just found this announcement. https://developers.facebook.com/blog/post/2024/03/28/changes-made-to-fb-login-sdk/

Many of our users have recently reported app hangs on launch, and we found that this issue is the root cause. So we replaced `-[FBSDKAppEventsDeviceInfo encodedDeviceInfo]` with our method that...

@MahaGhanem Something like this ```objc @class FBSKDAppEventsDeviceInfo @interface FBSKDAppEventsDeviceInfo (Workaround) @end ``` ```objc @import Foundation; @import FBSDKCoreKit; @import ObjectiveC.runtime; @implementation FBSDKAppEventsDeviceInfo (Workaround) + (void)load { static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{...

@onursahindur I can't figure out what is the problem on your code, but the original issue may have been fixed according to this commit log. https://github.com/facebook/facebook-ios-sdk/commit/6563a8cdcd72c77f8d73b16a6577c0bdae129775 I haven't tried to...