This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 14 lines 849 B View raw View rendered
1This is a Kotlin Multiplatform project targeting Android, iOS. 2 3* `/composeApp` is for code that will be shared across your Compose Multiplatform applications. 4 It contains several subfolders: 5 - `commonMain` is for code that’s common for all targets. 6 - Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name. 7 For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app, 8 `iosMain` would be the right folder for such calls. 9 10* `/iosApp` contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform, 11 you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project. 12 13 14Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)…