We've started an AB test using Firebase remote config. It's been over 24 hours, and it's showing "Total Users: 0" when there should have been tens of thousands of DAUs assigned to each variant.
It gives you the power to test changes to your app's UI, features, or engagement campaigns to see if they actually move the needle on your key metrics (like revenue and retention) before you roll them out widely.
Firebase provides a robust and low cost (free to use, but developers do need to spend some time architecting the app for remote config) framework to test your hypothesis in the production app with actual users.
Found the solution. A few dumb mistakes, but they are easy to miss because the remote config works fine without fixing them.
FIRApp configure
fetchWithExpirationDuration
when in debug mode so it's forced to fetch new values every time (it will cache by default). #ifdef DEBUG FIRRemoteConfigSettings* remoteConfigSettings = [[FIRRemoteConfigSettings alloc] initWithDeveloperModeEnabled:YES]; [FIRRemoteConfig remoteConfig].configSettings = remoteConfigSettings; #endif
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With