Ad
Firebase A/B Test - Same UserId On Different Devices
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?
Ad
Answer
No, this is not guaranteed. The ID that will be used takes the device into account, so it is possible for the same user to be in two different variants across devices.
Ad
source: stackoverflow.com
Related Questions
- → should I choose reactjs+f7 or f7+vue.js?
- → Phonegap Android write to sd card
- → Local reference jquery script in nanohttpd (Android)
- → Click to navigate on mobile devices
- → How to allow api access to android or ios app only(laravel)?
- → Access the Camera and CameraRoll on Android using React Native?
- → React native change listening port
- → What is the default unit of style in React Native?
- → Google play market autocomplete icon
- → Warning: Each child in an array or iterator should have a unique "key" prop. Check the render method of `ListView`
- → Using Laravel with Genymotion
- → react native using like web-based ajax function
- → react native pdf View
Ad