https://kotlinlang.org logo
s

Sylvain Patenaude

09/25/2019, 8:38 PM
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

gildor

09/26/2019, 2:46 AM
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

Sylvain Patenaude

09/26/2019, 2:26 PM
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.