Published On: January 15th, 2023Categories: AI News

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

Linux Build Status
Mac Build Status
Windows Build Status

Maven Central

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()
    // ...
}
Enter fullscreen mode

Exit fullscreen mode

Then, simply add the dependency to your common source-set dependencies

commonMain {
    dependencies {
        // ...
        implementation(

Source link

[gs-fb-comments]

Leave A Comment