2019-12-22 20:31:15 +00:00
# PeopleInSpace
2019-12-22 20:25:01 +00:00
2021-10-17 20:13:50 +00:00
Minimal **Kotlin Multiplatform** project with SwiftUI, Jetpack Compose, Compose for Wear OS, Compose for Desktop, Compose for Web, and Kotlin/JS + React clients along with Ktor backend. Currently running on
2020-11-17 16:58:10 +00:00
* Android (Jetpack Compose)
2021-11-05 20:40:17 +00:00
* Android App Widget (Compose based Glance API - contributed by https://github.com/yschimke)
2021-10-17 20:14:35 +00:00
* Wear OS (Compose for Wear OS - primarily developed by https://github.com/yschimke)
2020-11-17 16:58:10 +00:00
* iOS (SwiftUI)
2021-11-04 17:53:09 +00:00
* iOS App Widget (SwiftUI)
2021-06-09 21:10:10 +00:00
* watchOS (SwiftUI) (contributed by https://github.com/nealsanche)
2020-11-17 16:58:10 +00:00
* macOS (SwiftUI)
2020-12-02 20:36:46 +00:00
* Desktop (Compose for Desktop)
2021-05-11 18:48:28 +00:00
* Web (Compose for Web)
2021-06-09 21:10:10 +00:00
* Web (Kotlin/JS + React Wrapper) (contributed by https://github.com/PatilShreyas)
2021-02-13 15:03:17 +00:00
* JVM (small Ktor back end service + `Main.kt` in `common` module)
2019-12-22 20:31:15 +00:00
2021-05-21 14:08:38 +00:00
It makes use of [Open Notify PeopleInSpace API ](http://open-notify.org/Open-Notify-API/People-In-Space/ ) to show list of people currently in
2021-05-21 14:07:31 +00:00
space and also the position of the International Space Station (inspired by https://kousenit.org/2019/12/19/a-few-astronomical-examples-in-kotlin/)!
2021-05-21 18:29:45 +00:00
The project is included as sample in the official [Kotlin Multiplatform Mobile docs ](https://kotlinlang.org/docs/mobile/samples.html#peopleinspace ) and also the [Google Dev Library ](https://devlibrary.withgoogle.com/products/android )
2019-12-22 20:25:01 +00:00
2020-11-17 16:58:10 +00:00
Related posts:
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/ )
2021-04-25 09:42:16 +00:00
* [Jetpack Compose for the Desktop! ](https://johnoreilly.dev/posts/jetpack-compose-desktop-copy/ )
2020-11-30 14:48:41 +00:00
* [Comparing use of LiveData and StateFlow in a Jetpack Compose project ](https://johnoreilly.dev/posts/jetpack-compose-stateflow-livedata/ )
2021-01-03 19:30:45 +00:00
* [Wrapping Kotlin Flow with Swift Combine Publisher in a Kotlin Multiplatform project ](https://johnoreilly.dev/posts/kotlinmultiplatform-swift-combine_publisher-flow/ )
2021-01-22 15:07:13 +00:00
* [Using Swift Packages in a Kotlin Multiplatform project ](https://johnoreilly.dev/posts/kotlinmultiplatform-swift-package/ )
2021-06-27 09:39:12 +00:00
* [Using Swift's new async/await when invoking Kotlin Multiplatform code ](https://johnoreilly.dev/posts/swift_async_await_kotlin_coroutines/ )
2021-12-23 16:18:05 +00:00
* [Exploring new AWS SDK for Kotlin ](https://johnoreilly.dev/posts/aws-sdk-kotlin/ )
2021-01-03 19:30:45 +00:00
2020-05-02 14:33:18 +00:00
2021-04-22 05:33:19 +00:00
Note that this repository very much errs on the side of minimalism to help more clearly illustrate key moving parts of a Kotlin
2020-05-12 19:13:31 +00:00
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
2021-11-15 13:45:24 +00:00
primarily focused on use of Jetpack Compose and SwiftUI). If you're at the stage of moving
2021-04-25 17:47:32 +00:00
beyond this then I'd definitely recommend checking out [KaMPKit ](https://github.com/touchlab/KaMPKit ) from Touchlab.
I also have the following samples that demonstrate the use of a variety of Kotlin Multiplatform libraries (and also use Jetpack Compose and SwiftUI).
2021-04-25 17:45:47 +00:00
* [BikeShare ](https://github.com/joreilly/BikeShare )
* [GalwayBus ](https://github.com/joreilly/GalwayBus )
* [MortyComposeKMM ](https://github.com/joreilly/MortyComposeKMM )
* [FantasyPremierLeague ](https://github.com/joreilly/FantasyPremierLeague )
* [StarWars ](https://github.com/joreilly/StarWars )
* [Chip-8 ](https://github.com/joreilly/chip-8 )
2020-05-12 17:54:08 +00:00
2020-08-22 11:08:09 +00:00
### Building
2021-12-17 23:23:28 +00:00
You need to use Android Studio Arctic Fox (**note: Java 11 is now the minimum version required**). Requires XCode 13.2 or later (due to use of new Swift 5.5 concurrnecy APIs).
2021-05-31 13:02:28 +00:00
When opening iOS/watchOS/macOS projects remember to open `.xcworkspace` file (and not `.xcodeproj` one).
To exercise (React based) web client run `./gradlew :web:browserDevelopmentRun` .
2021-07-02 17:32:19 +00:00
To run backend you can either run `./gradlew :backend:run` or run `Server.kt` directly from Android Studio. After doing that you should then for example be able to open `http://localhost:9090/astros_local.json` in a browser.
2019-12-22 21:34:15 +00:00
2021-04-01 16:19:10 +00:00
2021-05-11 18:48:28 +00:00
### Compose for Web client
The Compose for Web client resides in the `compose-web` module and can be run by
2021-05-20 19:05:57 +00:00
invoking `./gradlew :compose-web:jsBrowserDevelopmentRun`
2021-05-11 18:48:28 +00:00
### Compose for Desktop client
2020-11-17 16:58:10 +00:00
2021-02-13 15:03:17 +00:00
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)
2019-12-22 21:34:15 +00:00
2021-02-27 12:06:30 +00:00
2022-01-19 20:24:17 +00:00
### Backend code
2021-06-16 17:42:33 +00:00
Have tested this out in Google App Engine deployment. Using shadowJar plugin to create an "uber" jar and then deploying it as shown below. Should be possible to deploy this jar to other services as well.
```
./gradlew :backend:shadowJar
gcloud app deploy backend/build/libs/backend-all.jar
```
2022-01-19 20:24:17 +00:00
### GraphQL backend
There's a GraphQL module (`graphql-server`) which can be run locally using `./gradlew :graphql-server:bootRun` with "playground" then available at http://localhost:8080/playground
2021-06-16 17:42:33 +00:00
2021-05-31 20:34:29 +00:00
### Screenshots
2021-07-02 17:32:19 +00:00
**iOS (SwiftUI)**
2021-05-31 20:34:29 +00:00
< br / >
2021-02-27 12:09:56 +00:00
< img width = "546" alt = "Screenshot 2021-02-27 at 12 09 02" src = "https://user-images.githubusercontent.com/6302/109386736-ac1f0700-78f4-11eb-812e-4bf971a8c2a7.png" >
2021-02-27 12:06:30 +00:00
2021-10-29 20:42:02 +00:00
**Android (Jetpack Compose)**
2021-06-01 19:04:16 +00:00
< br / >
2021-10-29 20:42:02 +00:00
< img width = "555" alt = "Screenshot 2021-03-07 at 17 03 46" src = "https://user-images.githubusercontent.com/6302/110248059-2ab81c00-7f67-11eb-9b3a-2b04d1be43ef.png" >
2021-06-01 19:04:16 +00:00
2021-10-29 20:42:02 +00:00
**watchOS (SwiftUI)**
2021-05-31 20:34:29 +00:00
< br / >
2021-10-29 20:42:02 +00:00
< img width = "250" alt = "watchOS Screenshot 1" src = "https://user-images.githubusercontent.com/6302/139499100-dc5112b0-04b9-4bdc-9c30-9975f3608eb3.png" >
< img width = "250" alt = "watch0S Screenshot 2" src = "https://user-images.githubusercontent.com/6302/139499115-944b241d-8e92-428b-b86c-f599b456c4bf.png" >
2021-03-07 17:06:45 +00:00
2021-10-29 16:21:38 +00:00
**Wear OS (Wear Compose)**
2021-07-01 19:53:48 +00:00
< br / >
2021-10-29 16:22:18 +00:00
< img width = "250" alt = "Wear Compose Screenshot 1" src = "https://user-images.githubusercontent.com/6302/137623548-ac51ca72-572e-4009-8b34-315defdf93a5.png" >
< img width = "250" alt = "Wear Compose Screenshot 2" src = "https://user-images.githubusercontent.com/6302/137640396-851489bb-e41d-47ef-badb-e2d22454eee4.png" >
< img width = "250" alt = "Wear Compose Screenshot 3" src = "https://user-images.githubusercontent.com/6302/139468900-16ad4e95-41dc-427f-977c-b893b1751c78.png" >
2021-07-02 17:32:19 +00:00
2021-07-01 19:53:48 +00:00
2021-10-29 20:42:02 +00:00
**macOS (SwiftUI)**
< br / >
< img width = "937" alt = "Screenshot 2021-06-01 at 20 02 31" src = "https://user-images.githubusercontent.com/6302/120376983-6ec37e80-c314-11eb-8279-7acc0c2d5206.png" >
2021-07-02 17:32:19 +00:00
**Compose for Desktop**
2021-05-31 20:34:29 +00:00
< br / >
2021-10-01 16:04:16 +00:00
< img width = "912" alt = "Screenshot 2021-10-01 at 16 45 06" src = "https://user-images.githubusercontent.com/6302/135652185-4ce9d8e3-f06e-4e9d-9930-3e900267f8bd.png" >
2021-02-27 12:06:30 +00:00
2021-07-02 17:32:19 +00:00
**Compose for Web**
2021-05-31 20:34:29 +00:00
< br / >
< img width = "564" alt = "Screenshot 2021-05-31 at 21 29 53" src = "https://user-images.githubusercontent.com/6302/120240074-9dc7ea80-c257-11eb-9884-5870a3f4ef95.png" >
2021-07-02 17:32:19 +00:00
**Web App (Kotlin/JS + React)**
2021-06-06 18:21:50 +00:00
< br / >
< img width = "612" alt = "Screenshot 2021-06-06 at 23 50 00" src = "https://user-images.githubusercontent.com/19620536/120935764-eda82500-c721-11eb-9042-f15ade7473f7.png" >
2021-05-31 20:34:29 +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 )
2021-04-25 09:29:10 +00:00
* [SQLDelight ](https://github.com/cashapp/sqldelight )
2019-12-22 20:39:14 +00:00
* [Jetpack Compose ](https://developer.android.com/jetpack/compose )
2020-06-29 02:58:17 +00:00
* [SwiftUI ](https://developer.apple.com/documentation/swiftui )
2021-11-06 13:19:26 +00:00
* [KMP-NativeCoroutines ](https://github.com/rickclephas/KMP-NativeCoroutines )