Tags: Rafael2616/reveal
Tags
chore(deps): Bump the kotlin group with 2 updates (Kotlin 2.0) (svenj… …acobs#132) * chore(deps): Bump the kotlin group with 2 updates Bumps the kotlin group with 2 updates: [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) and [org.jetbrains.kotlin.multiplatform](https://github.com/JetBrains/kotlin). Updates `org.jetbrains.kotlin.android` from 1.9.24 to 2.0.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.0/ChangeLog.md) - [Commits](JetBrains/kotlin@v1.9.24...v2.0.0) Updates `org.jetbrains.kotlin.multiplatform` from 1.9.24 to 2.0.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.0/ChangeLog.md) - [Commits](JetBrains/kotlin@v1.9.24...v2.0.0) Updates `org.jetbrains.kotlin.multiplatform` from 1.9.24 to 2.0.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v2.0.0/ChangeLog.md) - [Commits](JetBrains/kotlin@v1.9.24...v2.0.0) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin.android dependency-type: direct:production update-type: version-update:semver-major dependency-group: kotlin - dependency-name: org.jetbrains.kotlin.multiplatform dependency-type: direct:production update-type: version-update:semver-major dependency-group: kotlin - dependency-name: org.jetbrains.kotlin.multiplatform dependency-type: direct:production update-type: version-update:semver-major dependency-group: kotlin ... Signed-off-by: dependabot[bot] <support@github.com> * chore: adjust project config for Kotlin 2.0 * fix: multiplatform build issue * fix: deprecation warning * fix: issue with extra property diff --git a/convention-plugins/src/main/kotlin/convention.multiplatform.gradle.kts b/convention-plugins/src/main/kotlin/convention.multiplatform.gradle.kts index 04e28b4..6d6bea8 100644 --- a/convention-plugins/src/main/kotlin/convention.multiplatform.gradle.kts +++ b/convention-plugins/src/main/kotlin/convention.multiplatform.gradle.kts @@ -8,9 +8,6 @@ plugins { id("org.jetbrains.kotlin.plugin.compose") } -val baseName: String by extra -val outerBaseName = baseName - java { toolchain { languageVersion = JavaLanguageVersion.of(21) @@ -34,8 +31,12 @@ kotlin { iosArm64(), iosSimulatorArm64(), ).forEach { - it.binaries.framework { - baseName = outerBaseName + afterEvaluate { + val baseName: String by extra + + it.binaries.framework { + this.baseName = baseName + } } } * fix merge * Update to Kotlin 2.0.10 * Kotlin 2.0.20 * fix: update API dump * chore: update JetBrains Compose to 1.7.0-rc01 * chore: update dependencies * chore: update more dependencies * chore: revert config --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sven Jacobs <github@svenjacobs.com>
chore(deps): Bump androidx.compose:compose-bom (svenjacobs#163) Bumps androidx.compose:compose-bom from 2024.09.01 to 2024.09.02. --- updated-dependencies: - dependency-name: androidx.compose:compose-bom dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
fix: click modifier not working after config change (svenjacobs#130) * chore: add example app for easier debugging * fix: click modifier not working after config change (issue svenjacobs#127)
PreviousNext