Since I'm also new to IntelliJ IDEA, I'm wondering...
# intellij
s
Since I'm also new to IntelliJ IDEA, I'm wondering if someone could explain me the differences between these various options of Kotlin Projects: - Multiplatform Library | Gradle - Mobile Android/iOS | Gradle - Mobile Shared Library | Gradle Based on the descriptions, the differences seem subtle. From a thread in #getting-started
g
Mobile Android/iOS
Creates Kotlin MPP project with Android and iOS application
Mobile Shared Library
creates mobile library, no application there, application requires much more config actually,
Multiplatform Library
Just Kotlin multiplatform library, you can defien any target platforms Changes are not really significant, different use cases, different configs, slightly different project structure, as result 3 different templates
s
Thanks @gildor. Looks like I'd be better with one of the 2 "Library" options since I don't necessarily need the application part. I also asked in #multiplatform as suggested by someone else.