Does Kotlin/native support any library written in Kotlin, for sharing common code with an iOS project ?
Specifically is there a way to use the apollo-android library in a shared kotlin/native project?
Does Kotlin/native support any library written in Kotlin, for sharing common code with an iOS project ?
Specifically is there a way to use the apollo-android library in a shared kotlin/native project?
Short answer, no.
K/N will not support just any library written in Kotlin. I've looked at Apollo specifically, and much of that is actually Java, so you'd be pretty far off.
K/N supports "standard lib" Kotlin, which is a common subset of Kotlin, plus native extensions. Most likely, if you were going to do something like Apollo you'd want to build a multiplatform library. It would be a fair amount of work.