-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1242 from square/sedwards/update-versions
Update to Kotlin 1.9.24, w/ corresponding Compose, KSP
- Loading branch information
Showing
46 changed files
with
333 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 3 additions & 11 deletions
14
build-logic/src/main/java/com/squareup/workflow1/buildsrc/KotlinMultiplatformExtensions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
package com.squareup.workflow1.buildsrc | ||
|
||
import org.gradle.api.Project | ||
import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension | ||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTargetWithSimulatorTests | ||
|
||
fun KotlinMultiplatformExtension.iosWithSimulatorArm64(target: Project) { | ||
ios() | ||
fun KotlinMultiplatformExtension.iosWithSimulatorArm64() { | ||
iosX64() | ||
iosArm64() | ||
iosSimulatorArm64() | ||
|
||
sourceSets.getByName("iosSimulatorArm64Main") { | ||
it.dependsOn(sourceSets.getByName("iosMain")) | ||
} | ||
sourceSets.getByName("iosSimulatorArm64Test") { | ||
it.dependsOn(sourceSets.getByName("iosTest")) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
org.jetbrains.kotlin:kotlin-bom:1.9.10 | ||
org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10 | ||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10 | ||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10 | ||
org.jetbrains.kotlin:kotlin-stdlib:1.9.10 | ||
org.jetbrains.kotlin:kotlin-bom:1.9.24 | ||
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.24 | ||
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.24 | ||
org.jetbrains.kotlin:kotlin-stdlib:1.9.24 | ||
org.jetbrains:annotations:13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
workflow-config/config-android/dependencies/releaseRuntimeClasspath.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
workflow-config/config-jvm/dependencies/runtimeClasspath.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
com.squareup.okio:okio-js:3.3.0 | ||
com.squareup.okio:okio:3.3.0 | ||
org.jetbrains.kotlin:kotlin-bom:1.9.10 | ||
org.jetbrains.kotlin:kotlin-dom-api-compat:1.9.10 | ||
org.jetbrains.kotlin:kotlin-stdlib-js:1.9.10 | ||
org.jetbrains.kotlin:kotlin-stdlib:1.9.10 | ||
org.jetbrains.kotlin:kotlin-bom:1.9.24 | ||
org.jetbrains.kotlin:kotlin-dom-api-compat:1.9.24 | ||
org.jetbrains.kotlin:kotlin-stdlib-js:1.9.24 | ||
org.jetbrains.kotlin:kotlin-stdlib:1.9.24 | ||
org.jetbrains.kotlin:kotlinx-atomicfu-runtime:1.8.20 | ||
org.jetbrains.kotlinx:atomicfu-js:0.21.0 | ||
org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.7.3 | ||
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 | ||
org.jetbrains:annotations:13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.