我已经为我的 iOS 应用程序安装了 Testflight SDK。在每个步骤中都遵循手册。问题是 - 我没有从应用程序中得到任何报告。没有会话报告、错误、反馈——什么都没有。我检查了 Team Token - 一切都匹配。
这是我的代码:
- (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;
}
我想念什么?