File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ buildscript {
39
39
? rootProject. ext[' kotlinVersion' ]
40
40
: rootProject. hasProperty(' AsyncStorage_kotlinVersion' )
41
41
? rootProject. properties[' AsyncStorage_kotlinVersion' ]
42
- : ' 1.5.31 '
42
+ : ' 1.6.10 '
43
43
44
44
repositories {
45
45
google()
@@ -116,8 +116,8 @@ dependencies {
116
116
117
117
if (useNextStorage) {
118
118
def room_version = getVersionOrDefault(' AsyncStorage_next_roomVersion' , ' 2.4.2' )
119
- def coroutines_version = " 1.5.2 "
120
- def coroutinesTest_version = " 1.5.2 "
119
+ def coroutines_version = " 1.6.0 "
120
+ def coroutinesTest_version = " 1.6.0 "
121
121
// if we don't provide explicit dependency on reflection, kotlin plugin
122
122
// would add one automatically, probably a version that is not compatible with
123
123
// used kotlin
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ See [Configuration](#configuration) section below to learn more about setting di
46
46
buildscript {
47
47
ext {
48
48
// other extensions
49
- + kotlinVersion = '1.5.31 '
49
+ + kotlinVersion = '1.6.10 '
50
50
}
51
51
52
52
dependencies {
@@ -67,19 +67,19 @@ AsyncStorage_useNextStorage=true
67
67
68
68
** Kotlin version**
69
69
70
- Next storage is tested against Kotlin version ` 1.5.31 ` .
70
+ Next storage is tested against Kotlin version ` 1.6.10 ` .
71
71
You can specify different version, in one of two ways:
72
72
73
73
- add ` kotlinVersion ` extension to the ` rootProject ` :
74
74
75
75
``` groovy
76
- rootProject.ext.kotlinVersion = '1.5.31 '
76
+ rootProject.ext.kotlinVersion = '1.6.10 '
77
77
```
78
78
79
79
- specify ` AsyncStorage_kotlinVersion ` in ` gradle.properties ` :
80
80
81
81
``` groovy
82
- AsyncStorage_kotlinVersion=1.5.31
82
+ AsyncStorage_kotlinVersion=1.6.10
83
83
```
84
84
85
85
** Room**
You can’t perform that action at this time.
0 commit comments