Skip to content

Commit 0351f37

Browse files
authored
Merge pull request #116 from cashapp/jw/all-the-targets/2022-09-16
JetBrains Compose runtime beta01
2 parents dcfea3a + ea31a27 commit 0351f37

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
13+
runs-on: macos-latest
1414

1515
steps:
1616
- uses: actions/checkout@v3

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
release:
10-
runs-on: ubuntu-latest
10+
runs-on: macos-latest
1111

1212
steps:
1313
- uses: actions/checkout@v3

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
compileSdk = "31"
2+
compileSdk = "33"
33
minSdk = "21"
44

55
compose = "1.3.0"
@@ -16,8 +16,8 @@ androidx-core = { module = "androidx.core:core-ktx", version = "1.2.0" }
1616
androidx-test-runner = { module = "androidx.test:runner", version = "1.2.0" }
1717

1818
compose-compiler = { module = "androidx.compose.compiler:compiler", version.ref = "compose" }
19-
compose-runtime = { module = "org.jetbrains.compose.runtime:runtime", version = "1.1.0" }
20-
compose-rx2 = { module = "androidx.compose.runtime:runtime-rxjava2", version = "1.1.0" }
19+
compose-runtime = { module = "org.jetbrains.compose.runtime:runtime", version = "1.2.0-beta01" }
20+
compose-rx2 = { module = "androidx.compose.runtime:runtime-rxjava2", version = "1.2.1" }
2121

2222
dokka-plugin = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version = "1.6.10" }
2323

molecule/molecule-runtime/build.gradle

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,31 @@ kotlin {
1010
android {
1111
publishLibraryVariants('release')
1212
}
13+
14+
iosArm64()
15+
iosSimulatorArm64()
16+
iosX64()
17+
1318
js {
1419
nodejs()
1520
}
1621
jvm()
1722

23+
linuxX64()
24+
25+
macosArm64()
26+
macosX64()
27+
28+
mingwX64()
29+
30+
tvosArm64()
31+
tvosSimulatorArm64()
32+
tvosX64()
33+
34+
watchosArm64()
35+
watchosSimulatorArm64()
36+
watchosX64()
37+
1838
sourceSets {
1939
commonMain {
2040
dependencies {

0 commit comments

Comments
 (0)