Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
krizzu committed May 7, 2024
1 parent 67cd775 commit 7bd3491
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/website/docs/advanced/Next.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,36 +47,36 @@ AsyncStorage_useNextStorage=true

**Kotlin version**

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

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

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

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

```groovy
AsyncStorage_kotlinVersion=1.9.20
AsyncStorage_kotlinVersion=1.9.23
```

**Room**

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

```groovy
AsyncStorage_next_roomVersion=2.4.3
AsyncStorage_next_roomVersion=2.6.1
```

KSP is enabled for symbol processing for the Room library.
KSP version will be selected based on Kotlin version in your project.
If you want to use different KSP version, you can set a property in `gradle.properties`:

```groovy
AsyncStorage_next_kspVersion=1.9.20-1.0.14
AsyncStorage_next_kspVersion=1.9.23-1.0.20
```

### Notable changes
Expand Down

0 comments on commit 7bd3491

Please sign in to comment.