No description
Find a file
2024-11-11 20:39:18 -05:00
.fleet init 2024-11-11 18:49:22 -05:00
composeApp everything works now, look at how we pull in the enum, I think that's where we went wrong before. 2024-11-11 20:39:18 -05:00
gradle everything works now, look at how we pull in the enum, I think that's where we went wrong before. 2024-11-11 20:39:18 -05:00
.gitignore init 2024-11-11 18:49:22 -05:00
build.gradle.kts init 2024-11-11 18:49:22 -05:00
gradle.properties init 2024-11-11 18:49:22 -05:00
gradlew init 2024-11-11 18:49:22 -05:00
gradlew.bat init 2024-11-11 18:49:22 -05:00
README.md init 2024-11-11 18:49:22 -05:00
settings.gradle.kts init 2024-11-11 18:49:22 -05:00

This is a Kotlin Multiplatform project targeting Android, Desktop.

  • /composeApp is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:
    • commonMain is for code thats 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 Apples CoreCrypto for the iOS part of your Kotlin app, iosMain would be the right folder for such calls.

Learn more about Kotlin Multiplatform