Is there a KMP equivalent of Proto Datastore? Preferences Datastore doesn't quite fit my needs.
j
jw
09/05/2025, 1:47 PM
You can use kotlinx.serialization with the datastore core to get protos (or json or toml or yaml or xml or...) on all platforms. It's fairly trivial to implement your own serializer for datastore.
j
Jonathan
09/05/2025, 2:04 PM
Hmm. Never realized all I needed to do what create a custom serializer. Thanks for the info.