Kotlin Native Example - Multiplatform - Android and iOS
Usage kotlin multiplatform feature to create an Android and iOS app in which whole business logic is wirtten in Kotlin language
View layer is written in platform specific languages
Presenter and Model layer is written in Kotlin language
common module is for common code which is shared between Android and iOS
iOSApp is for iOS app code
If you getting sdk.dir not found error during building, create local.properties
in root project folder and add sdk.dir=<android sdk path>
into that file. This is because it need android sdk to build this project