Question

I am keep on getting crash from my application in which i have integrate test flight 8.2 beta. Will You please tell me what does this crash report means. I think this is due to test flight sdk.

   0 CoreFoundation 0x37c938bf __exceptionPreprocess + 163
   1 libobjc.A.dylib 0x317791e5 objc_exception_throw + 33
   2 CoreFoundation 0x37c937b9 +[NSException raise:format:] + 1
   3 CoreFoundation 0x37c937db +[NSException raise:format:] + 35
   4 CoreFoundation 0x37c00671 -[__NSCFDictionary setObject:forKey:] + 161
   5 Foundation 0x31b4971b -[NSMutableDictionary(NSKeyValueCoding) setValue:forKey:] + 23
   6 AppName 0x0014a1cb -[TFAirTrafficController getSystemLog:] + 731
   7 AppName 0x001486dd -[TFAirTrafficController checkForOldLogs] + 249
   8 AppName 0x00148849 -[TFAirTrafficController checkForOldData:] + 49
   9 Foundation 0x31b39a91 -[NSThread main] + 73
   10 Foundation 0x31bcd5a1 __NSThread__main__ + 1049
   11 libsystem_c.dylib 0x360bbc1d _pthread_start + 321
   12 libsystem_c.dylib 0x360bbad8 thread_start + 8 
Was it helpful?

Solution

You are trying to insert nil into a dictionary in [TFAirTrafficController getSystemLog:]. Make sure the object is not nil before attempting to insert it. Also make sure your key is not nil as well.

UPDATE: As pointed out by Nikolai TFAirTrafficController is test flight's code. So I guess the real solution is to make sure you are on the latest stable TestFlight SDK

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top