Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jakub-lat committed Feb 15, 2024
1 parent 5a992f0 commit 9131b0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 deletions.
23 changes: 5 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,8 @@
This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop.
# Memobird App

* `/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.
Unofficial app for Memobird G2 inkless printer.

* `/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.
The original app is not working anymore and has been taken down from Play Store, so I decided to make one myself.
Made in [Compose Multiplatform](https://www.jetbrains.com/lp/compose-multiplatform/) because I wanted to check it out (iOS isn't supported yet).


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),

**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).

You can open the web application by running the `:composeApp:wasmJsBrowserDevelopmentRun` Gradle task.
Shout out to [LeMinaw/openmemobird](https://github.com/LeMinaw/openmemobird) for providing API "docs".
2 changes: 1 addition & 1 deletion composeApp/src/commonMain/kotlin/screens/About.kt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ object AboutScreen : Screen {
Spacer(Modifier.height(20.dp))
Text("Made with Compose Multiplatform.", textAlign = TextAlign.Center, style = MaterialTheme.typography.bodyMedium)
Spacer(Modifier.height(7.dp))
Text("Based on LeMinaw/openmemobird.", textAlign = TextAlign.Center, style = MaterialTheme.typography.bodyMedium)
Text("Special thanks to LeMinaw/openmemobird.", textAlign = TextAlign.Center, style = MaterialTheme.typography.bodyMedium)
Spacer(Modifier.height(30.dp))
FilledTonalButton(onClick = {
uriHandler.openUri("https://github.com/jakub-lat/memobird-app")
Expand Down

0 comments on commit 9131b0b

Please sign in to comment.