Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ jobs:

ci-macos:
name: CI / macOS (iOS)
runs-on: macos-latest
# macos-26 ships Xcode 26 / iOS 26 SDK, required by Compose Multiplatform 1.11+
# (skiko references the iOS 26 UIViewLayoutRegion API; older SDKs fail to link).
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ internal fun Project.configureKotlinMultiplatform(
}
binaries.executable()
compilerOptions {
freeCompilerArgs.addAll("-Xexpect-actual-classes", "-Xwasm-attach-js-exception")
freeCompilerArgs.addAll("-Xexpect-actual-classes")
freeCompilerArgs.add("-Xwasm-kclass-fqn")
optIn.addAll(*optIns)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public sealed class NavigationDirection: Parcelable {
@Serializable
public data object Present : NavigationDirection()

@PublishedApi
internal object MetadataKey : dev.enro.NavigationKey.MetadataKey<NavigationDirection?>(
default = null,
)
Expand Down
6 changes: 3 additions & 3 deletions libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ agp = "9.0.0"
android-compileSdk = "36"
android-minSdk = "23"
android-targetSdk = "36"
kotlin = "2.3.21"
compose-plugin = "1.10.3"
kotlin = "2.4.0"
compose-plugin = "1.11.1"
compose = "1.11.1"
kotlinx-serialization = "1.11.0"
maven-publish = "0.36.0"
ksp = "2.3.3"
ksp = "2.3.9"
kotlinx-coroutines = "1.10.2"
kotlin-js = "2026.5.0" # https://central.sonatype.com/artifact/org.jetbrains.kotlin-wrappers/kotlin-js
dokka = "2.0.0"
Expand Down
Loading