Hi ! I'm trying k2 complier , but faced issue with...
# k2-adopters
a
Hi ! I'm trying k2 complier , but faced issue with kmm and internal visibility in iOS
Copy code
e: file:///Users/StudioProjects/kmp-annotations/lib/src/iosMain/kotlin/PlatformIos.kt:8:45 Symbol class Dao : Any is invisible
Where
Dao
class is
internal
but seams not accessible by
iosMain
adding
@file:Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER", "INVISIBLE_SETTER")
fixed the issue
can be reproduce in this branch with command
Copy code
./gradlew build -PdisableJsTarget=true -Pkotlin.experimental.tryK2=true
created issue
🙏 1