How do I implement and use Kotlin/Native libraries...
# kotlin-native
t
How do I implement and use Kotlin/Native libraries without a maven repository in gradle? The library will be provided in (.def), .dll/.so/.dylib, .h and .klib files according to the documentation.
b
You need cinterops. Google on that
t
For what purpose is the .klib file when it's not used in this topic?
b
Klib is just other kotlin native libs distributed via maven repos
t
Thanks!
n
Note that C libraries can be wrapped into klib files. The klib format does have a provision for covering C libraries.