Skip to content

Commit 1091dcd

Browse files
committedJun 6, 2024
bump kotlin
1 parent b6ebe56 commit 1091dcd

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed
 

‎packages/default-storage/android/config.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import java.nio.file.Paths
22

3-
def DEFAULT_KOTLIN_VERSION = "1.9.23"
3+
def DEFAULT_KOTLIN_VERSION = "1.9.24"
44
def DEFAULT_ROOM_VERSION = "2.6.1"
55

66
def kotlinVersion = getKotlinVersion(DEFAULT_KOTLIN_VERSION)
@@ -54,6 +54,7 @@ String getKspVersion(String kotlinVersion) {
5454
}
5555
// https://github.com/google/ksp/releases
5656
def kspVersions = [
57+
"1.9.24-1.0.20",
5758
"1.9.23-1.0.20",
5859
"1.9.22-1.0.17",
5960
"1.9.21-1.0.16",

‎packages/website/docs/advanced/Next.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@ AsyncStorage_useNextStorage=true
4747

4848
**Kotlin version**
4949

50-
Next storage is tested against Kotlin version `1.9.23`.
50+
Next storage is tested against Kotlin version `1.9.24`.
5151
You can specify different version, in one of two ways:
5252

5353
- add `kotlinVersion` extension to the `rootProject`:
5454

5555
```groovy
56-
rootProject.ext.kotlinVersion = '1.9.23'
56+
rootProject.ext.kotlinVersion = '1.9.24'
5757
```
5858

5959
- specify `AsyncStorage_kotlinVersion` in `gradle.properties`:
6060

6161
```groovy
62-
AsyncStorage_kotlinVersion=1.9.23
62+
AsyncStorage_kotlinVersion=1.9.24
6363
```
6464

6565
**Room**
@@ -76,7 +76,7 @@ KSP version will be selected based on Kotlin version in your project.
7676
If you want to use different KSP version, you can set a property in `gradle.properties`:
7777

7878
```groovy
79-
AsyncStorage_next_kspVersion=1.9.23-1.0.20
79+
AsyncStorage_next_kspVersion=1.9.24-1.0.20
8080
```
8181

8282
### Notable changes

0 commit comments

Comments
 (0)