我已经安装了Testflight SDK为我的iPhone应用程序。 随后在每一个步骤的手册。 问题是 - 我没有从任何应用程序的报告。 没有会议报告,错误反馈 - 什么都没有。 我检查小组令牌 - 一切相匹配。
这是我的代码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//bla bla bla some initialization code
[TestFlight takeOff:@"my team token"];
[TestFlight setDeviceIdentifier:[[UIDevice currentDevice] uniqueIdentifier]];
TFLog(@"Test message");
return YES;
}
我怎么错过?