👋
I built a multiplatform library that expose some alias or extension methods. (For example:
typealias Seconds = Float
. The library is built for Android/JVM/JS.
When I’m using this library in an android application, I can’t import my alias.
I checked in the
aar
file: the typealias is present. Also, using my lib in a jvm or js project. the
Seconds
alias can be imported. I don’t understand why I can’t import it while I don’t have any issue with other class for my library. Did you already get this issue?