Skip to content

Commit 288137f

Browse files
committed
Update kotlin to 1.6.10 to avoid build warnings
1 parent 7e00452 commit 288137f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ buildscript {
3939
? rootProject.ext['kotlinVersion']
4040
: rootProject.hasProperty('AsyncStorage_kotlinVersion')
4141
? rootProject.properties['AsyncStorage_kotlinVersion']
42-
: '1.5.31'
42+
: '1.6.10'
4343

4444
repositories {
4545
google()
@@ -116,8 +116,8 @@ dependencies {
116116

117117
if (useNextStorage) {
118118
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"
121121
// if we don't provide explicit dependency on reflection, kotlin plugin
122122
// would add one automatically, probably a version that is not compatible with
123123
// used kotlin

website/docs/advanced/Next.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ See [Configuration](#configuration) section below to learn more about setting di
4646
buildscript {
4747
ext {
4848
// other extensions
49-
+ kotlinVersion = '1.5.31'
49+
+ kotlinVersion = '1.6.10'
5050
}
5151

5252
dependencies {
@@ -67,19 +67,19 @@ AsyncStorage_useNextStorage=true
6767

6868
**Kotlin version**
6969

70-
Next storage is tested against Kotlin version `1.5.31`.
70+
Next storage is tested against Kotlin version `1.6.10`.
7171
You can specify different version, in one of two ways:
7272

7373
- add `kotlinVersion` extension to the `rootProject`:
7474

7575
```groovy
76-
rootProject.ext.kotlinVersion = '1.5.31'
76+
rootProject.ext.kotlinVersion = '1.6.10'
7777
```
7878

7979
- specify `AsyncStorage_kotlinVersion` in `gradle.properties`:
8080

8181
```groovy
82-
AsyncStorage_kotlinVersion=1.5.31
82+
AsyncStorage_kotlinVersion=1.6.10
8383
```
8484

8585
**Room**

0 commit comments

Comments
 (0)