https://kotlinlang.org logo
e

edenman

04/20/2020, 7:55 PM
Trying to expose a ConflatedBroadcastChannel from a kmp module. Anybody seen this before?
1
(it builds fine but AS is very upset)
I verified that the kmp module has the same version of
kotlinx-coroutines-core-common
as my android module does (1.3.5)
o

Orhan Tozan

04/21/2020, 9:56 AM
Yes, I also have this alot throughout my project, it's not excluded to Coroutines. Cleaning my project clears the IDE errors. I think it happens when you get the same library imported multiple times by transitive dependencies by use of
api ()
in gradle
e

edenman

04/21/2020, 11:06 PM
clean build doesn’t fix it for me 😕
2 Views