-
Notifications
You must be signed in to change notification settings - Fork 651
Closed
Labels
Description
My environment
- Android Studio version: 4.1.3
- Firebase Component: Analytics
- Component version: Latest version
The problem
Client side sequence:
- update user properties
- send signin_success event
In firebase:
- get signin_success event - that time the user properties are not updated
- update user properties
So I added delay time(5 sec) for the signin_success event
In this case: working correctly
- update user properties
- get signin_success event - that time the user properties are updated
It was working correctly but it's not working now days.
The user properties update time takes more than event processing time.

