Which library do you recommend to use to store key...
# multiplatform
g
Which library do you recommend to use to store key value in something like “SecureStorage”, it’s important for me to save in an encrypted area, but for compose multiplatform (I target just android and iOS)
p
I use multiplatform-settings: https://github.com/russhwolf/multiplatform-settings with no issues, works like a charm.
🙌 1
c
Also AndroidX‘s Datastore is KMP already.
g
Yeah but it doesn’t provide encryption itself and will need a wrapper for it or am I wrong ?
c
On Android you‘ll need that anyway. There is no „Keychain“ like you have on iOS.
👍 1
p
This one is good: https://github.com/xxfast/KStore Simpler API than AndroidX Datastore
👀 1