fixed: showing signature mismatch dialog
Description
Fixed showing the dialog of signature mismatch error.
It's regression isssue when we optimized the homepage loading time of app lounge where We skipped auth validation for every launch as optimization.
Screenshots
Technical details
App collects error events through flow api of kotlin. Now We collect data from multiple flow in a single coroutine. Here one flow is for Auth error and another flow is for Signature missmatch error. Here flow of auth error is blocking the flow of Signature mismatch error as flow is thread blocker. That's why Error for signature mismatch is not shown.
To resolve this issue, We have collected data from flows by launching separate coroutines.