Update README.md

Signed-off-by: Matt <mramotar@dropbox.com>
This commit is contained in:
Matt 2022-12-30 09:00:11 -05:00 committed by GitHub
parent d5aedb0ef5
commit 73b28ac1b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,10 +29,14 @@
### Including Store In Your Project ### Including Store In Your Project
#### Android > **Note**
>
> **[AtomicFU](https://github.com/Kotlin/kotlinx-atomicfu) is required ([#503](https://github.com/MobileNativeFoundation/Store/issues/503))**
#### Android
```kotlin ```kotlin
implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha03" implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha03"
api "org.jetbrains.kotlinx:atomicfu:0.18.5"
``` ```
#### Multiplatform (Common, JVM, Native, JS) #### Multiplatform (Common, JVM, Native, JS)
@ -41,6 +45,7 @@ implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha03"
commonMain { commonMain {
dependencies { dependencies {
implementation("org.mobilenativefoundation.store:store5:5.0.0-alpha03") implementation("org.mobilenativefoundation.store:store5:5.0.0-alpha03")
api("org.jetbrains.kotlinx:atomicfu:0.18.5")
} }
} }
``` ```