Hello, I am successfully using kotlin native since...
# kotlin-native
u
Hello, I am successfully using kotlin native since months for mobile cross platform development and I have an ios background. There is still something I don’t understand…How to know what’s the version of iOS APIs included in a specific Kotlin version? For example I see that when new version of iOS will come out, kotlin will not include immediately brand new APIs. Is that correct? Or Kotlin just translate current ios sdk installed on your machine into klibs so kotlin native APIs are always up-to-date?
t
new APIs usually take 1 or 2 kotlin versions to be included. however, it’s important to note it just runs some standard tools, that you can also use yourself
look into cinterop
u
so it runs cinterop over new iOS APIs
generating ios klibs
t
yes
u
but how do I know what’ s the version of ios APIs used for klib?
t
not aware of that being packaged at all, would be nice
u
ok I see. thanks man