I'm developing an Android library,
When the user receives a push notification it may contain deep links, that I need to return to the app.
I did in kotlin with no problem.
This is the function that is called when it needs to send the deep links
Код: Выделить всё
fun getDeepLinkFlow(): Flow = flow {
emit(deepLinks)
}
Код: Выделить всё
GlobalScope.launch(coroutineContext) {
SDK.getDeepLinkFlow().collect { deepLinks ->
println(deepLinks)
}
}
So, how can I use the collect from Coroutines on a Java code? or what could I do differently?
Источник: https://stackoverflow.com/questions/620 ... ow-in-java
Мобильная версия