11

I upload builds to testflightapp.com for testers. Some of my sessions don't have logs inside, only start time and no finish time. Either there are no crash logs, so as I suppose crashes are not relative to this issue. I don't have problems with the most part of sessions, only with some. Why this could happen ?

user801255
  • 607
  • 1
  • 8
  • 23
  • By *logs* do you mean checkpoints? Are you sure the **[TestFlight takeOff:YOUR_TEAM_ID]** method is called? Do you test on many different devices? Maybe the problem is device/os specific? – lawicko Feb 23 '12 at 15:24
  • No, by logs I mean TFlogs, on the same device some sessions are empty and some are not. – user801255 Feb 23 '12 at 18:29

3 Answers3

1

For more accurate logs of their builds, you must implement the testing framework that you can find the link:

https://testflightapp.com/sdk/

Gavjr
  • 151
  • 5
0

have you checked the mentioned tutorials in the homepage?

http://help.testflightapp.com/customer/portal/topics/184165-tutorials/articles

Ilker Baltaci
  • 11,644
  • 6
  • 63
  • 79
0

Sessions(As described on https://testflightapp.com/sdk/): Discover how testers are using your application. Watch as they progress and take unexpected turns.

None crash log: It maybe you are using some third part analytics tools such as Flurry. These tools owns the Unexception-handler. You could config your TestFlight SDK to force owns the Unexception-handler in your AppDelegate using below codes

NSString *udid = [[UIDevice currentDevice] uniqueIdentifier];
[TestFlight setDeviceIdentifier:udid];

[TestFlight takeOff:@"YOUR TESTFLIGHT SECRET KEY"];

[TestFlight setOptions:@{TFOptionReinstallCrashHandlers : @YES}];
SFeng
  • 2,226
  • 1
  • 19
  • 16