Skip to content

Commit 7bd3491

Browse files
committed
docs
1 parent 67cd775 commit 7bd3491

File tree

1 file changed

+6
-6
lines changed
  • packages/website/docs/advanced

1 file changed

+6
-6
lines changed

packages/website/docs/advanced/Next.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,36 +47,36 @@ AsyncStorage_useNextStorage=true
4747

4848
**Kotlin version**
4949

50-
Next storage is tested against Kotlin version `1.9.20`.
50+
Next storage is tested against Kotlin version `1.9.23`.
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.20'
56+
rootProject.ext.kotlinVersion = '1.9.23'
5757
```
5858

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

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

6565
**Room**
6666

6767
Next AsyncStorage uses [Room persistence library](https://developer.android.com/jetpack/androidx/releases/room) to store data.
68-
Currently, tested version is `2.4.3`. You can specify different version, by adding a flag to `gradle.properties`:
68+
Currently, tested version is `2.6.1`. You can specify different version, by adding a flag to `gradle.properties`:
6969

7070
```groovy
71-
AsyncStorage_next_roomVersion=2.4.3
71+
AsyncStorage_next_roomVersion=2.6.1
7272
```
7373

7474
KSP is enabled for symbol processing for the Room library.
7575
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.20-1.0.14
79+
AsyncStorage_next_kspVersion=1.9.23-1.0.20
8080
```
8181

8282
### Notable changes

0 commit comments

Comments
 (0)