Minimal Kotlin Multiplatform project with SwiftUI, Jetpack Compose, Wear Compose, Compose for Desktop, Compose for Web and Kotlin/JS + React clients along with Ktor backend.
Find a file
2021-04-21 20:34:40 +01:00
.github/workflows kotlin/js gh-pages deploy updates 2021-02-05 14:19:48 +00:00
app reverted changes 2021-04-12 00:21:49 +05:30
backend further koin related updates including running unit test to check modules 2020-12-14 20:54:52 +00:00
buildSrc compose beta5 + accompanist 0.8.0 2021-04-21 20:34:40 +01:00
common added a databasewrapper to inject a nullable value 2021-04-12 01:23:34 +05:30
compose-desktop added platform-specific koin providers 2021-04-12 00:59:36 +05:30
gradle/wrapper Kotlin 1.4.31, Compose beta, koin 3.0.1-alpha 2021-03-02 21:39:06 +00:00
ios/PeopleInSpaceSwiftUI SwiftUI: show iss position on map 2021-02-27 10:11:41 +00:00
macOS/PeopleInSpace macOS map fix 2021-01-10 20:16:38 +00:00
watchos/PeopleInSpaceWatch scope updates 2020-11-01 17:31:51 +00:00
web cleaned up imports 2021-04-11 15:37:46 +05:30
.gitignore Removed file that shouldn't be tracked 2020-09-06 16:19:54 +01:00
build.gradle.kts update build to allow using compose in AS 4.1 stable version 2021-04-01 17:21:27 +01:00
gradle.properties update to kotlin 1.4.10 + other dependency updates 2020-09-10 17:30:00 +01:00
gradlew Update gradle to 6.5.1 2020-07-21 12:11:41 +02:00
gradlew.bat Update gradle to 6.5.1 2020-07-21 12:11:41 +02:00
LICENSE add Apache-2 license 2020-10-12 20:22:08 +01:00
README.md update build to allow using compose in AS 4.1 stable version 2021-04-01 17:21:27 +01:00
settings.gradle.kts Update gradle plugin 2020-11-20 07:21:05 -06:00

PeopleInSpace

Minimal Kotlin Multiplatform project using Jetpack Compose and SwiftUI. Currently running on

  • Android (Jetpack Compose)
  • iOS (SwiftUI)
  • watchOS (SwiftUI)
  • macOS (SwiftUI)
  • Desktop (Compose for Desktop)
  • Web (Kotlin/JS + React Wrapper)
  • JVM (small Ktor back end service + Main.kt in common module)

It makes use of basic API (http://open-notify.org/Open-Notify-API/People-In-Space/) to show list of people currently in space (inspired by https://kousenit.org/2019/12/19/a-few-astronomical-examples-in-kotlin/)! The list is shown on Android using Jetpack Compose, on iOS using SwiftUI and on Web using Kotlin/JS React wrapper.

Related posts:

Note that this repository very much errs on the side of minimalism to help more clearly illustrate key moving parts of a Koltin Multiplatform project and also to hopefully help someone just starting to explore KMP to get up and running for first time (and is of course primarily focussed on use of Jetpack Compose and SwiftUI). If you're at stage of moving beyond this then I'd definitely recommend checking out KaMPKit

Building

You need to use Android Studio Canary version (note: Java 11 is now the minimum version required). Have tested with XCode v11 and v12. When opening iOS/watchOS/macOS projects remember to open .xcworkspace file (and not .xcodeproj one). To exercise web client run ./gradlew :web:browserDevelopmentRun.

UPDATE: now also works in stable version of Android Studio.

Jetpack Compose for Desktop client

This client is available in compose-desktop module. Note that you need to use appropriate version of JVM when running (works for example with Java 11)

Screenshots

Screenshot 2021-02-27 at 12 09 02 Screenshot 2021-03-07 at 17 03 46 Screenshot 2021-03-07 at 17 05 31

Languages, libraries and tools used