dropbox / kaiken

User scoping library for Android applications.
Apache License 2.0
69 stars 11 forks source link

Fix issue loading user on process recreate #159

Closed chris-mitchell closed 2 years ago

chris-mitchell commented 2 years ago

We were seeing an issue in the following scenario: 1) Launch an app and log in 2) Background the app, but do not close it 3) Launch Android Settings page and adjust permissions for the app 4) Open the app

Observed: App hangs at splash screen and does not proceed

By converting the cold stream into a hot stream w/ shareIn on the app coroutine scope, we're able to always monitor for content and resolve this issue.