Can i set firebase
analytics user properties unique for each user in android app?
If yes, how?
Is FirebaseAnalytics.setUserId(String id)
meant for it?
Can i set firebase
analytics user properties unique for each user in android app?
If yes, how?
Is FirebaseAnalytics.setUserId(String id)
meant for it?
The user properties will be attached to all events on a device until you remove them. For example, if you set a user ID to "123" for a user, all events coming out of that device will have that user property. Notice that this is per device. I hope this answer your question.