multiplatform-settings icon indicating copy to clipboard operation
multiplatform-settings copied to clipboard

A Kotlin Multiplatform library for saving simple key-value data

Results 38 multiplatform-settings issues
Sort by recently updated
recently updated
newest added

This PR improves the way addKeychainItem(...) distinguishes between adding and updating an item when used with FaceID. The original implementation caused two operations on the key chain: 1. Check if...

As wasm went stable, need support for `multiplatform-settings-coroutines` , Also [kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.0) supported wasm which was the blocker i think Tired to support in https://github.com/russhwolf/multiplatform-settings/pull/187 , but i feel some configurations...

- issue #183 I’ll update this file whenever the original README file changes.

As iOS platform supports Keychain experimentally, other platforms have similar secure implementations of a simple key-value storage directly, like Android's [Keystore](https://developer.android.com/privacy-and-security/keystore) or [Credential Manager](https://developer.android.com/training/sign-in/passkeys). Or encrypt your data with a...

**Reproducible** Not sure, I can't reproduce this crash but there are crashes on Firebase crashlytics. **Version** 1.1.0 We use this version because version 1.1.1 uses Kotlin 1.9.20 and our JS...

After updating the Kotlin version to 2.0 in the KMP project in the commonMain module, the ability to import Settings disappeared. After searching for the reason, I discovered that different...

Hi! I'm the author of [compose-remember-preference](https://github.com/burnoo/compose-remember-preference), and I wanted to have similar library for Compose Multiplatform. With latest changes on 1.2 branch (supporting `makeObservable` for js targets and adding WASM...

Hello, I have created this helper to save userName in Settings. I get and set the details in some viewModels. ```kotlin class SettingsHelper { companion object { // User Data...