【发布时间】:2017-11-17 10:46:17
【问题描述】:
两天前,我在我的 iOS 应用上使用以下代码在 Firebase Remote Config 上创建并启动了 A/B 测试:
[FIRApp configure];
[FIRRemoteConfig.remoteConfig fetchWithCompletionHandler:^(FIRRemoteConfigFetchStatus status, NSError * _Nullable error) {
// Do nothing
}];
[FIRRemoteConfig.remoteConfig activateFetched];
我已确认测试正在进行,因为在某些设备上我可以看到测试正在进行。
问题是,两天后,Firebase 控制台一直说有 0 个用户参与了实验。另一方面,我使用相同的代码在 Android 上进行了另一次测试,几个小时后我可以看到活动。
我有什么遗漏吗?
编辑 - Pod 版本:
Using Firebase (4.5.0)
Using FirebaseABTesting (1.0.0)
Using FirebaseAnalytics (4.0.4)
Using FirebaseCore (4.0.10)
Using FirebaseInstanceID (2.0.5)
Using FirebasePerformance (1.0.6)
Using FirebaseRemoteConfig (2.1.0)
【问题讨论】:
标签: ios firebase ab-testing firebase-remote-config