Does Firebase A/B testing take into consideration user id which is set by FirebaseAnalytics.setUserId
? Here is my use case:
John Doe
opens the app- He signs in
FirebaseAnalytics.setUserId
is called withjohnDoeUserId
- Remote config values are fetched -> he lands in
VariantA
John Doe
opens the app on a different device (same Google account)- He signs in
FirebaseAnalytics.setUserId
is called withjohnDoeUserId
- Remote config values are fetched -> is it guaranteed that he is going to land in
VariantA
?
Does userId
has any meaning for A/B test?