No description
Find a file
Ben Martin b161684cae
All checks were successful
Build / build (pull_request) Successful in 4m54s
feat: update JDK and add Android SDK setup in CI workflows
This commit updates the CI build and release workflows by making the following changes:
-   Updates the Java setup action to version 3.
-   Changes the JDK distribution to 'temurin'.
-   Adds a step to set up the Android SDK using `android-actions/setup-android@v3`.
These changes apply to both `build.yaml` and `release.yaml` files.
2025-01-21 00:35:49 +00:00
.fleet Initial commit 2025-01-20 22:23:52 +00:00
.github/workflows feat: update JDK and add Android SDK setup in CI workflows 2025-01-21 00:35:49 +00:00
composeApp Initial commit 2025-01-20 22:23:52 +00:00
gradle Initial commit 2025-01-20 22:23:52 +00:00
iosApp Initial commit 2025-01-20 22:23:52 +00:00
.gitignore Initial commit 2025-01-20 22:23:52 +00:00
build.gradle.kts Initial commit 2025-01-20 22:23:52 +00:00
gradle.properties Initial commit 2025-01-20 22:23:52 +00:00
gradlew Initial commit 2025-01-20 22:23:52 +00:00
gradlew.bat Initial commit 2025-01-20 22:23:52 +00:00
README.md Initial commit 2025-01-20 22:23:52 +00:00
settings.gradle.kts Initial commit 2025-01-20 22:23:52 +00:00

This is a Kotlin Multiplatform project targeting Android, iOS.

  • /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.
  • /iosApp contains iOS applications. 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.

Learn more about Kotlin Multiplatform