【发布时间】:2012-06-03 21:31:43
【问题描述】:
我已经为我的 iOS 应用程序安装了 Testflight SDK。 在每个步骤中都遵循手册。问题是 - 我没有从应用程序中得到任何报告。没有会话报告、错误、反馈——什么都没有。我检查了团队令牌 - 一切都匹配。
这是我的代码:
- (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;
}
我错过了什么?
【问题讨论】:
-
-uniqueIdentifier已弃用。一个月前的新闻里你没听过它的恶臭吗? -
我仅将 UDID 用于调试版本的存档。
标签: iphone objective-c ios sdk testflight