Reputation: 1
I try to migrate from Fabric to Firebase and I want to know how to link my application users to Firebase? In Fabric I used Crashlytics.setUserName
what is the equivalent method in Firebase?
Upvotes: 0
Views: 981
Reputation: 16249
Mike from Firebase here. The closest method to Crashlytics.setUserName
is Crashlytics.setUserIdentifier("TheUserId");
.
Upvotes: 1