Why do all of my crash logs show anonymous user when all of them have a testflight account and I'm setting the uuid in the test flight initialization?
in my singleton:
#define kTestFlightTest 1
in application initialization:
[TestFlight takeOff:kTestFlightToken];
#ifdef kTestFlightTest
[TestFlight setDeviceIdentifier:[[UIDevice currentDevice] uniqueIdentifier]];
#endif
