File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
import java.nio.file.Paths
2
2
3
- def DEFAULT_KOTLIN_VERSION = " 1.9.23 "
3
+ def DEFAULT_KOTLIN_VERSION = " 1.9.24 "
4
4
def DEFAULT_ROOM_VERSION = " 2.6.1"
5
5
6
6
def kotlinVersion = getKotlinVersion(DEFAULT_KOTLIN_VERSION )
@@ -54,6 +54,7 @@ String getKspVersion(String kotlinVersion) {
54
54
}
55
55
// https://github.com/google/ksp/releases
56
56
def kspVersions = [
57
+ " 1.9.24-1.0.20" ,
57
58
" 1.9.23-1.0.20" ,
58
59
" 1.9.22-1.0.17" ,
59
60
" 1.9.21-1.0.16" ,
Original file line number Diff line number Diff line change @@ -47,19 +47,19 @@ AsyncStorage_useNextStorage=true
47
47
48
48
** Kotlin version**
49
49
50
- Next storage is tested against Kotlin version ` 1.9.23 ` .
50
+ Next storage is tested against Kotlin version ` 1.9.24 ` .
51
51
You can specify different version, in one of two ways:
52
52
53
53
- add ` kotlinVersion ` extension to the ` rootProject ` :
54
54
55
55
``` groovy
56
- rootProject.ext.kotlinVersion = '1.9.23 '
56
+ rootProject.ext.kotlinVersion = '1.9.24 '
57
57
```
58
58
59
59
- specify ` AsyncStorage_kotlinVersion ` in ` gradle.properties ` :
60
60
61
61
``` groovy
62
- AsyncStorage_kotlinVersion=1.9.23
62
+ AsyncStorage_kotlinVersion=1.9.24
63
63
```
64
64
65
65
** Room**
@@ -76,7 +76,7 @@ KSP version will be selected based on Kotlin version in your project.
76
76
If you want to use different KSP version, you can set a property in ` gradle.properties ` :
77
77
78
78
``` groovy
79
- AsyncStorage_next_kspVersion=1.9.23 -1.0.20
79
+ AsyncStorage_next_kspVersion=1.9.24 -1.0.20
80
80
```
81
81
82
82
### Notable changes
You can’t perform that action at this time.
0 commit comments