mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-10-28 05:47:40 +01:00
895 B
895 B
This is a Kotlin Multiplatform project targeting Desktop, Server.
-
/composeAppis for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:commonMainis for code that’s common for all targets.- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
iosMainwould be the right folder for such calls.
-
/serveris for the Ktor server application. -
/sharedis for the code that will be shared between all targets in the project. The most important subfolder iscommonMain. If preferred, you can add code to the platform-specific folders here too.
Learn more about Kotlin Multiplatform…