2019-12-22 20:31:15 +00:00
# PeopleInSpace
2019-12-22 20:25:01 +00:00
2020-04-17 19:05:04 +00:00
Minimal **Kotlin Multiplatform** project using Jetpack Compose and SwiftUI. Currently running on
* Android
* iOS
* watchOS
* macOS
2020-05-02 13:40:33 +00:00
* Web
2020-08-22 11:08:09 +00:00
* JVM (small Ktor back end service)
2019-12-22 20:31:15 +00:00
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
2020-08-22 11:08:09 +00:00
using **Jetpack Compose** , on iOS using **SwiftUI** and on Web using Kotlin/JS React wrapper.
2019-12-22 20:25:01 +00:00
2020-08-22 11:08:09 +00:00
Related posts (please be aware that these were written pre Kotlin 1.4...I plan on updating them soon
to reflect 1.4 changes):
2020-05-02 14:33:18 +00:00
* [Minimal Kotlin Multiplatform project using Compose and SwiftUI ](https://johnoreilly.dev/posts/minimal-kotlin-platform-compose-swiftui/ )
* [Adding some Storage (to) Space ](https://johnoreilly.dev/posts/adding-sqldelight-to-peopleinspace/ )
* [Kotlin Multiplatform running on macOS ](https://johnoreilly.dev/posts/kotlinmultiplatform-macos/ )
* [PeopleInSpace hits the web with Kotlin/JS and React ](https://johnoreilly.dev/posts/peopleinspace-kotlinjs/ )
2020-05-16 22:19:52 +00:00
* [Using Koin in a Kotlin Multiplatform Project ](https://johnoreilly.dev/posts/kotlinmultiplatform-koin/ )
2020-05-02 14:33:18 +00:00
2020-05-12 19:13:31 +00:00
Note that this repository very much errs on the side of mimimalism 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
2020-05-12 17:54:08 +00:00
beyond this then I'd definitely recommend checking out [KaMPKit ](https://github.com/touchlab/KaMPKit )
2020-08-22 11:08:09 +00:00
### Building
2020-09-18 14:23:03 +00:00
You need to use Android Studio v4.2 (currently preview/canary version). Have tested on XCode v11 and v12. When opening
2020-08-22 11:08:09 +00:00
iOS/watchOS/macOS projects remember to open `.xcworkspace` file (and not `.xcodeproj` one). To exercise web client run `./gradlew :web:browserDevelopmentRun` .
2019-12-22 21:34:15 +00:00
2019-12-22 20:39:14 +00:00
### Languages, libraries and tools used
* [Kotlin ](https://kotlinlang.org/ )
2020-06-29 02:58:17 +00:00
* [Kotlin Coroutines ](https://kotlinlang.org/docs/reference/coroutines-overview.html )
2020-08-22 11:08:09 +00:00
* [Kotlinx Serialization ](https://github.com/Kotlin/kotlinx.serialization )
2019-12-22 20:39:14 +00:00
* [Ktor client library ](https://github.com/ktorio/ktor )
* [Android Architecture Components ](https://developer.android.com/topic/libraries/architecture/index.html )
* [Koin ](https://github.com/InsertKoinIO/koin )
* [Jetpack Compose ](https://developer.android.com/jetpack/compose )
2020-06-29 02:58:17 +00:00
* [SwiftUI ](https://developer.apple.com/documentation/swiftui )