You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If in the multiplatform project expect declaration is created on the intermediate level (e.g. sharedNative) actual implementations will be missed in the documentation
Expected behaviour
I expect similar behavior as for declaration in common.
Configuration
sourceSets {
val commonMain by getting
val commonTest by getting
val linuxX64Main by getting
val macosX64Main by getting
val nativeMain by creating {
dependsOn(commonMain)
linuxX64Main.dependsOn(this)
macosX64Main.dependsOn(this)
}
}
If in the multiplatform project
expect
declaration is created on the intermediate level (e.g. sharedNative) actual implementations will be missed in the documentationExpected behaviour
I expect similar behavior as for declaration in common.
Configuration
I see only documentation for

expect
classIf I will move

expect
declaration tocommonMain
then everything matched correctlyInstallation
The text was updated successfully, but these errors were encountered: