Skip to content

Commit

Permalink
V0.1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dinaraparanid committed Jun 10, 2024
1 parent becfe56 commit 56e9c39
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 16 deletions.
71 changes: 55 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,61 @@
This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop.
**Star Wars Travel**
--------------------

* `/composeApp` is for code that will be shared across your Compose Multiplatform applications.
It contains several subfolders:
- `commonMain` is for code that’s 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 Apple’s CoreCrypto for the iOS part of your Kotlin app,
`iosMain` would be the right folder for such calls.
[![Kotlin](https://img.shields.io/badge/kotlin-2.0.0-blue.svg?logo=kotlin)](http://kotlinlang.org)

* `/iosApp` contains iOS applications. Even if you’re 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.
## **Developer**
[Paranid5](https://github.com/dinaraparanid)

## **About App**
**Star Wars Travel** is a sample Kotlin Multiplatform application that utilises multiple services
to preview the most historically important planets from Star Wars universe.
App is aimed to provide crucial information for travelers, explorers and SW fans.

Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html),
[Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform/#compose-multiplatform),
[Kotlin/Wasm](https://kotl.in/wasm/)
Currently, application supports three targets: ***Android***, ***iOS*** and ***Desktop***.
Projects shares same business and UI logic by utilizing Compose Multiplatform, Decompose, Kodein
and other KMP libraries

**Note:** Compose/Web is Experimental and may be changed at any time. Use it only for evaluation purposes.
We would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel [#compose-web](https://slack-chats.kotlinlang.org/c/compose-web).
If you face any issues, please report them on [GitHub](https://github.com/JetBrains/compose-multiplatform/issues).
### **Preview**

You can open the web application by running the `:composeApp:wasmJsBrowserDevelopmentRun` Gradle task.
![preview](preview.gif)

## **Stack**

<ul>
<li>General</li>
<ul>
<li>Kotlin 2.0</li>
<li>Kotlin Multiplatform</li>
<li>Coroutines + Flow</li>
<li>Kodein</li>
<li>KotlinX.Collections.Immutable</li>
</ul>
<p></p>
<li>Business logic and data management</li>
<ul>
<li>Decompose + Essenty</li>
<li>MviKotlin</li>
<li>Ktor</li>
<li>SQLDelight</li>
<li>DataStore</li>
<li>Paging</li>
<li>KotlinX.Serialization</li>
<li>KSoup</li>
</ul>
<li>UI</li>
<ul>
<li>Compose Multiplatform</li>
<li>Decompose</li>
<li>Coil + Compose extensions</li>
<li>ConstraintLayout (Compose version)</li>
<li>Android Canvas (Compose version)</li>
</ul>
</ul>

## **System Requirements**

Stable internet connection is required

## **License**

*GNU Public License V 3.0*
1 change: 1 addition & 0 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ android {
buildTypes {
getByName("release") {
isMinifyEnabled = false
signingConfig = signingConfigs.getByName("debug")
}
}
compileOptions {
Expand Down
Binary file added preview.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 56e9c39

Please sign in to comment.