Facebook iOS SDK Crashes

We experience many crashes in our application (Reporting by Crashlytics, but the developers could not reproduce). The stack trace suggests that this is caused by facebook sdk (3.15.1). Is this a known issue in older versions?

We are trying to figure out whether to send a new version with the latest version of the SDK or explore it further.

Thread : Crashed: com.apple.root.default-priority 0 ??? 0x2be030c4 1 ??? 0x2be03f07 2 ??? 0x2be0569f 3 libdyld.dylib 0x394c80d0 dyld_stub_binder + 20 4 Couchsurfing 0x0035c901 __31+[FBTask taskDependentOnTasks:]_block_invoke (FBTask.m:96) 5 Couchsurfing 0x0035d6bd __39-[FBTask dependentTaskWithBlock:queue:]_block_invoke_2 (FBTask.m:257) 6 libdispatch.dylib 0x394a3d7b _dispatch_call_block_and_release + 10 7 libdispatch.dylib 0x394b6989 _dispatch_root_queue_drain + 220 8 libdispatch.dylib 0x394b6b79 _dispatch_worker_thread2 + 56 9 libsystem_pthread.dylib 0x395e5dbf _pthread_wqthread + 298 
+6
source share
1 answer

If you are using cocoapods, make sure that you have correctly configured the podcast version.

ie: the line in which your application is running

 platform :ios, '7.0' 

The line that your application is working with uses the OSAtomicDecrement32 method, which has a different implementation for iOS 7.1 and higher.

+6
source

Source: https://habr.com/ru/post/978428/


All Articles