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
{{ message }}
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.
I have a Kotlin Multiplatform library that should be callable from other languages like C, C++, C#, Python, etc.
If I export the project as a sharedLib however, the Kotlin stdlib headers are not exported. That means that If there's a function that has as a return type an object from the stdlib like HashMap, I can't call any functions on it.
Is there a way to export the headers for the stdlib as well or is there only the workaround of not using those return types / creating the functions we need manually?
The text was updated successfully, but these errors were encountered:
I have a Kotlin Multiplatform library that should be callable from other languages like C, C++, C#, Python, etc.
If I export the project as a sharedLib however, the Kotlin stdlib headers are not exported. That means that If there's a function that has as a return type an object from the stdlib like HashMap, I can't call any functions on it.
Is there a way to export the headers for the stdlib as well or is there only the workaround of not using those return types / creating the functions we need manually?
The text was updated successfully, but these errors were encountered: