Reputation: 217
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?
Upvotes: 2
Views: 1792
Reputation: 2079
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.
Upvotes: 1