Reputation: 326
Currently, We are integrating firebase crashlytics. I have set user identifer using "Crashlytics.setUserIdentifier("xxxx")" and also, see the user id in the crash report. Is there any way, to filter out a particular user crash report/ events?.
Upvotes: 1
Views: 385
Reputation: 20432
Just follow the documentation:
FirebaseCrashlytics.getInstance().setUserId("12345");
Upvotes: 1