You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Source code for the ["Get started with Kotlin Multiplatform" tutorial](https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-getting-started.html)
2
-
3
-
This is a Kotlin Multiplatform project targeting Android, iOS.
4
-
5
-
*`/composeApp` is for code that will be shared across your Compose Multiplatform applications.
6
-
It contains several subfolders:
7
-
-`commonMain` is for code that’s common for all targets.
8
-
- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
9
-
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
10
-
`iosMain` would be the right folder for such calls.
*`/iosApp` contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform,
13
-
you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.
14
-
15
-
*`/shared` is for the code that will be shared between all targets in the project.
16
-
The most important subfolder is `commonMain`. If preferred, you can add code to the platform-specific folders here
17
-
too.
18
-
19
-
Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)…
4
+
### Source code for the ["Get started with Kotlin Multiplatform" tutorial](https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-getting-started.html)
0 commit comments