Max Tromp
Max Tromp

Reputation: 780

Firebase A/B test offline behavior

I am doing a Firebase A/B split-test with Remote Configs. When a user is offline does he get the different variations from the config files? How is this recorded in the analytics?

Upvotes: 1

Views: 191

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599011

The initial default values are encoded in your application binary. Until you fetch updated values, the app will use these defaults. This includes if the app is unable to ever fetch updated values.

Once the app fetched values from the server, it stores those in local storage and uses those values next time it runs. So if your app is unable to fetch updated values afterwards, it uses the previous values that it fetched.

The app will always report its current values to Analytics, unless you explicitly log something else.

Upvotes: 1

Related Questions