Pavel
Pavel

Reputation: 813

Kotlin native multiplatform

I would like to create multiplatform Kotlin Native app. I've seen couple of examples, where we have following structure:

I would like to read some config from file. There are samples that do that in Kotlin Native. Samples use libraries:

Questions:

Upvotes: 1

Views: 501

Answers (1)

yole
yole

Reputation: 97288

The C interop and the POSIX functions are exclusive to Kotlin/Native and cannot be used in common modules.

Upvotes: 3

Related Questions