Is there an JVM in kotlin for android and in nativ...
# getting-started
a
Is there an JVM in kotlin for android and in native no JVM or what?
v
Please do not split topics across several threads. This makes following the conversation in the threads view very hard as the context of the other messages is missing. If you have additional information either edit the original message or post to its thread. Regarding the question, exactly, native compiles to native code, Kotlin for Android to code for the Dalvik VM.
👍 1
a
Basically, if you want to make an android app, use Kotlin for android. If you want to share code between many platforms (including android), then use Kotlin native or Kotlin Multiplatform.
👍 2
a
Thank you a lot for explanation, but i have another question , Kotlin native could translate to android and the same time to IOS??
l
You can use Kotlin Native for Android NDK (what you'd usually use if you write a C++ app). Think of Kotlin Native as C/C++/Objective-C