Today, I’ve released version 1.0.0 of Multiplatform Settings. That means I’m committed to maintaining the current API surface of everything not marked as experimental until there’s a 2.0 release (which I don’t currently have plans for). If you need to save simple, unstructured key-value data in your multiplatform apps, I hope you’ll consider using it. A lot of you already are!
A Kotlin Multiplatform library for saving simple key-value data
This is a Kotlin library for Multiplatform apps, so that common code can persist key-value data.
Table of contents
Adding to your project
Multiplatform Settings is currently published to Maven Central, so add that to repositories.
repositories {
mavenCentral()
// ...
}
Then, simply add the dependency to your common source-set dependencies
commonMain {
dependencies {
// ...
implementation(
[gs-fb-comments]