Update README.md
Signed-off-by: Matt <mramotar@dropbox.com>
This commit is contained in:
parent
d5aedb0ef5
commit
73b28ac1b8
1 changed files with 6 additions and 1 deletions
|
@ -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")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue