Skip to content

Commit a2d37c8

Browse files
committed
Remove intermediate steps
1 parent 316d97f commit a2d37c8

File tree

237 files changed

+18
-7695
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+18
-7695
lines changed

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1-
# get-started-with-kmp
1+
### Source code for the ["Get started with Kotlin Multiplatform" tutorial](https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-getting-started.html)
22

3-
Source code for the "Get started with Kotlin Multiplatform" tutorial: https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-getting-started.html
3+
This is a Kotlin Multiplatform project targeting Android, iOS.
4+
5+
* `/composeApp` is for code that will be shared across your Compose Multiplatform applications.
6+
It contains several subfolders:
7+
- `commonMain` is for code that’s common for all targets.
8+
- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
9+
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
10+
`iosMain` would be the right folder for such calls.
11+
12+
* `/iosApp` contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform,
13+
you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.
14+
15+
* `/shared` is for the code that will be shared between all targets in the project.
16+
The most important subfolder is `commonMain`. If preferred, you can add code to the platform-specific folders here
17+
too.
18+
19+
Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)

step2/.gitignore

Lines changed: 0 additions & 15 deletions
This file was deleted.

step2/README.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

step2/build.gradle.kts

Lines changed: 0 additions & 9 deletions
This file was deleted.

step2/composeApp/build.gradle.kts

Lines changed: 0 additions & 72 deletions
This file was deleted.

step2/composeApp/src/androidMain/AndroidManifest.xml

Lines changed: 0 additions & 23 deletions
This file was deleted.

step2/composeApp/src/androidMain/kotlin/App.kt

Lines changed: 0 additions & 37 deletions
This file was deleted.

step2/composeApp/src/androidMain/kotlin/com/jetbrains/greeting/MainActivity.kt

Lines changed: 0 additions & 24 deletions
This file was deleted.

step2/composeApp/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)