Mahdi
Mahdi
@TalhaAli00 There is no pro-guard rule as minification is not enabled.
Seems like if app previously using old version, on migration to last version this issue will exist till uninstall and fresh install. So some of our users affected as well.
@jakubuid I don't know how to reproduce it but sometime happens and have to kill the app. I'm using last version right now and these are my dependencies: ``` implementation(platform("com.walletconnect:android-bom:1.21.0"))...
@jakubuid Now I can add more information. I observed that this happens on extends sessions for me with last version: ``` Web3Wallet.extendSession(extend, { success -> // }) { error ->...
So we have some situation that live data is converted to flow in our useCases. In bellow test cases, test1 will fails but second will pass. ``` class TurbinFlowTest {...
Hey @JakeWharton I feel issue is some-how about coroutine scope here: ``` public fun LiveData.asFlow(): Flow = flow { val channel = Channel(Channel.CONFLATED) val observer = Observer { channel.trySend(it) }...
Thanks for response, for minimizing the question I did not pass dispatchers and as long as no dispatcher change I think `runTest` should be fine. So in my real code...