A Mobile App for Stardance
  • Kotlin 94.7%
  • HTML 3.1%
  • Swift 1.9%
  • CSS 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-13 13:51:08 +02:00
androidApp chore: Initial Commit 2026-09-11 15:33:02 +02:00
desktopApp chore: Initial Commit 2026-09-11 15:33:02 +02:00
gradle feat(ui/components/LoginPrompt): added Login Window 2026-09-12 21:56:30 +02:00
iosApp chore: Initial Commit 2026-09-11 15:33:02 +02:00
kotlin-js-store/wasm feat(webApp): Add Web-Support. Somehow. It doesn't even work really... 2026-09-13 13:51:08 +02:00
shared feat(webApp): Add Web-Support. Somehow. It doesn't even work really... 2026-09-13 13:51:08 +02:00
webApp feat(webApp): Add Web-Support. Somehow. It doesn't even work really... 2026-09-13 13:51:08 +02:00
.gitignore chore: Initial Commit 2026-09-11 15:33:02 +02:00
build.gradle.kts chore: Initial Commit 2026-09-11 15:33:02 +02:00
gradle.properties chore: Initial Commit 2026-09-11 15:33:02 +02:00
gradlew chore: Initial Commit 2026-09-11 15:33:02 +02:00
gradlew.bat chore: Initial Commit 2026-09-11 15:33:02 +02:00
README.md chore: Initial Commit 2026-09-11 15:33:02 +02:00
settings.gradle.kts feat(webApp): Add Web-Support. Somehow. It doesn't even work really... 2026-09-13 13:51:08 +02:00

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

  • /iosApp contains an iOS application. Even if youre sharing your UI with Compose Multiplatform, you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.

  • /shared 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.

Running the apps

Use the run configurations provided by the run widget in your IDE's toolbar. You can also use these commands and options:

  • Android app: ./gradlew :androidApp:assembleDebug
  • Desktop app:
    • Hot reload: ./gradlew :desktopApp:hotRun --auto
    • Standard run: ./gradlew :desktopApp:run
  • iOS app: open the /iosApp directory in Xcode and run it from there.

Learn more about Kotlin Multiplatform