No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-22 15:54:52 -06:00
composeApp auto indent 2026-06-22 15:54:52 -06:00
gradle Clive 2026-06-22 13:01:36 -06:00
.gitignore Chat interface 2026-04-30 08:00:34 -06:00
build.gradle.kts init commit 2026-04-29 10:08:42 -06:00
gradle.properties init commit 2026-04-29 10:08:42 -06:00
gradlew init commit 2026-04-29 10:08:42 -06:00
gradlew.bat init commit 2026-04-29 10:08:42 -06:00
logo.png Chat interface 2026-04-30 07:57:34 -06:00
logo.xcf Chat interface 2026-04-30 07:57:34 -06:00
README.md init commit 2026-04-29 10:08:42 -06:00
settings.gradle.kts Clive 2026-06-22 13:01:36 -06:00

This is a Kotlin Multiplatform project targeting Android, Desktop (JVM).

  • /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, the iosMain folder would be the right place for such calls. Similarly, if you want to edit the Desktop (JVM) specific part, the jvmMain folder is the appropriate location.

Build and Run Android Application

To build and run the development version of the Android app, use the run configuration from the run widget in your IDEs toolbar or build it directly from the terminal:

  • on macOS/Linux
    ./gradlew :composeApp:assembleDebug
    
  • on Windows
    .\gradlew.bat :composeApp:assembleDebug
    

Build and Run Desktop (JVM) Application

To build and run the development version of the desktop app, use the run configuration from the run widget in your IDEs toolbar or run it directly from the terminal:

  • on macOS/Linux
    ./gradlew :composeApp:run
    
  • on Windows
    .\gradlew.bat :composeApp:run
    

Learn more about Kotlin Multiplatform