Skip to content

Commit 916bda6

Browse files
authored
Update Kotlin version to 1.8, update related dependencies (android#8)
Change-Id: Icb832e3c938f0e0b2140c0eefcc169998966e192
1 parent 2545e7e commit 916bda6

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

DiceRoller/androidApp/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
targetCompatibility = JavaVersion.VERSION_1_8
3737
}
3838
composeOptions {
39-
kotlinCompilerExtensionVersion = "1.3.2"
39+
kotlinCompilerExtensionVersion = "1.4.0"
4040
}
4141
}
4242

@@ -46,7 +46,7 @@ dependencies {
4646
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")
4747
implementation("androidx.activity:activity-compose:1.6.1")
4848

49-
implementation(platform("androidx.compose:compose-bom:2022.10.00"))
49+
implementation(platform("androidx.compose:compose-bom:2023.01.00"))
5050
debugImplementation("androidx.compose.ui:ui-tooling")
5151
implementation("androidx.compose.ui:ui-tooling-preview")
5252
implementation("androidx.compose.material:material")

DiceRoller/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
mavenCentral()
2121
}
2222
dependencies {
23-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
23+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0")
2424
classpath("com.android.tools.build:gradle:7.3.0")
2525
}
2626
}

DiceRoller/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ android.useAndroidX=true
99

1010
#MPP
1111
kotlin.mpp.enableCInteropCommonization=true
12+
kotlin.mpp.androidSourceSetLayoutVersion=2

DiceRoller/iosApp/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ target 'iosApp' do
22
use_frameworks!
33
platform :ios, '14.1'
44
pod 'shared', :path => '../shared'
5-
pod 'KMPNativeCoroutinesAsync', '0.13.0'
5+
pod 'KMPNativeCoroutinesAsync', '0.13.3'
66
end

DiceRoller/iosApp/Podfile.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PODS:
2-
- KMPNativeCoroutinesAsync (0.13.0):
3-
- KMPNativeCoroutinesCore (= 0.13.0)
4-
- KMPNativeCoroutinesCore (0.13.0)
2+
- KMPNativeCoroutinesAsync (0.13.3):
3+
- KMPNativeCoroutinesCore (= 0.13.3)
4+
- KMPNativeCoroutinesCore (0.13.3)
55
- shared (1.0)
66

77
DEPENDENCIES:
8-
- KMPNativeCoroutinesAsync (= 0.13.0)
8+
- KMPNativeCoroutinesAsync (= 0.13.3)
99
- shared (from `../shared`)
1010

1111
SPEC REPOS:
@@ -18,10 +18,10 @@ EXTERNAL SOURCES:
1818
:path: "../shared"
1919

2020
SPEC CHECKSUMS:
21-
KMPNativeCoroutinesAsync: 88f10d799cd3a0b3575140ef7dd231adec2bdf6b
22-
KMPNativeCoroutinesCore: c8dc675c106e7a5e5387955bee6f94f7d72ea99f
21+
KMPNativeCoroutinesAsync: 0fb5f7258e7b2bae50f03614a134bbbbfa3343ab
22+
KMPNativeCoroutinesCore: 53c5b81bf7b74c556ce595931b3cdde87d6b2e45
2323
shared: d3e936b2c1df570cf43bf984e725cd24b68be937
2424

25-
PODFILE CHECKSUM: 0267b88966d5fd74a845b73a21f300d280c05ef9
25+
PODFILE CHECKSUM: 20cbc8f6d669e90d09748fe15772591883d512bb
2626

2727
COCOAPODS: 1.11.3

DiceRoller/shared/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
kotlin("multiplatform")
1818
kotlin("native.cocoapods")
1919
id("com.android.library")
20-
id("com.rickclephas.kmp.nativecoroutines") version "0.13.1"
20+
id("com.rickclephas.kmp.nativecoroutines") version "0.13.3"
2121
}
2222

2323
version = "1.0"
@@ -53,7 +53,7 @@ kotlin {
5353
}
5454
}
5555
val androidMain by getting
56-
val androidTest by getting
56+
val androidUnitTest by getting
5757
val iosX64Main by getting
5858
val iosArm64Main by getting
5959
val iosSimulatorArm64Main by getting

0 commit comments

Comments
 (0)