@@ -48,7 +48,7 @@ Then, simply add the dependency to your common source-set dependencies
48
48
commonMain {
49
49
dependencies {
50
50
// ...
51
- implementation(" com.russhwolf:multiplatform-settings:1.1.0 " )
51
+ implementation(" com.russhwolf:multiplatform-settings:1.1.1 " )
52
52
}
53
53
}
54
54
```
@@ -185,7 +185,7 @@ the `multiplatform-settings-no-arg` gradle dependency. This exports `multiplatfo
185
185
you can use it as a replacement for that default dependency.
186
186
187
187
``` kotlin
188
- implementation(" com.russhwolf:multiplatform-settings-no-arg:1.1.0 " )
188
+ implementation(" com.russhwolf:multiplatform-settings-no-arg:1.1.1 " )
189
189
```
190
190
191
191
Then from common code, you can write
@@ -317,7 +317,7 @@ garbage-collected and stop sending updates.
317
317
A testing dependency is available to aid in testing code that interacts with this library.
318
318
319
319
``` kotlin
320
- implementation(" com.russhwolf:multiplatform-settings-test:1.1.0 " )
320
+ implementation(" com.russhwolf:multiplatform-settings-test:1.1.1 " )
321
321
```
322
322
323
323
This includes a ` MapSettings ` implementation of the ` Settings ` interface, which is backed by an in-memory ` MutableMap `
@@ -348,7 +348,7 @@ them, to help remove that experimental status.
348
348
A ` kotlinx-serialization ` integration exists so it's easier to save non-primitive data
349
349
350
350
``` kotlin
351
- implementation(" com.russhwolf:multiplatform-settings-serialization:1.1.0 " )
351
+ implementation(" com.russhwolf:multiplatform-settings-serialization:1.1.1 " )
352
352
```
353
353
354
354
This essentially uses the ` Settings ` store as a serialization format. Thus for a serializable class
@@ -401,7 +401,7 @@ Usage requires accepting both the `@ExperimentalSettingsApi` and `@ExperimentalS
401
401
A separate ` multiplatform-settings-coroutines ` dependency includes various coroutine APIs.
402
402
403
403
``` kotlin
404
- implementation(" com.russhwolf:multiplatform-settings-coroutines:1.1.0 " )
404
+ implementation(" com.russhwolf:multiplatform-settings-coroutines:1.1.1 " )
405
405
```
406
406
407
407
This adds flow extensions for all types which use the listener APIs internally.
@@ -445,7 +445,7 @@ An implementation of `FlowSettings` on the Android exists in the `multiplatform-
445
445
on [ Jetpack DataStore] ( https://developer.android.com/jetpack/androidx/releases/datastore )
446
446
447
447
``` kotlin
448
- implementation(" com.russhwolf:multiplatform-settings-datastore:1.1.0 " )
448
+ implementation(" com.russhwolf:multiplatform-settings-datastore:1.1.1 " )
449
449
```
450
450
451
451
This provides a ` DataStoreSettings ` class
0 commit comments