Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Borowy committed Nov 18, 2023
1 parent 8e6533f commit cd6d034
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions packages/website/docs/advanced/Next.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ AsyncStorage_useNextStorage=true

**Kotlin version**

Next storage is tested against Kotlin version `1.8.10`.
Next storage is tested against Kotlin version `1.9.20`.
You can specify different version, in one of two ways:

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

```groovy
rootProject.ext.kotlinVersion = '1.8.10'
rootProject.ext.kotlinVersion = '1.9.20'
```

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

```groovy
AsyncStorage_kotlinVersion=1.8.10
AsyncStorage_kotlinVersion=1.9.20
```

**Room**
Expand All @@ -71,6 +71,13 @@ Currently, tested version is `2.4.3`. You can specify different version, by addi
AsyncStorage_next_roomVersion=2.4.3
```

KSP is enabled for symbol processing for Room.
If you use different Kotlin version than default, you should also [update KSP version](https://github.com/google/ksp/releases) to keep compatibility:

```groovy
AsyncStorage_next_kspVersion=1.9.20-1.0.14
```

### Notable changes

Alongside of a warning regarding `key`/`value`, errors are thrown when:
Expand Down

0 comments on commit cd6d034

Please sign in to comment.