Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The following [Kotlin Multiplatform Targets](https://www.jetbrains.com/help/kotl
| ✅ | Android | SDK 21+ |
| ✅ | JVM | JDK 11+ |
| ✅ | Native | Linux x64 |
| ✅ | iOS | x64, Arm64, SimulatorArm64 |
| ❌ | Native | [Other native targets](https://kotlinlang.org/docs/native-target-support.html) |
| ✅ | Javascript (Node.js) | |
| ✅ | Javascript (Browser) | |
Expand Down
3 changes: 3 additions & 0 deletions kotlin-sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ kotlin {
}
}
linuxX64 {}
iosX64()
iosArm64()
iosSimulatorArm64()
js {
nodejs {}
browser {
Expand Down
Loading