Kinda off-topic, but what would be the recommended...
# compose-desktop
b
Kinda off-topic, but what would be the recommended approach to store simple settings in a compose desktop project? Android dev here, I have a compose project using shared preferences, but have no idea how it should be handled in desktop, maybe just a simple file? 🤔
a
💯 5
b
thank you!
d
For configuration files you can use dead simple java [Properties](https://docs.oracle.com/javase/7/docs/api/java/util/Properties.html) file or HOCON/YAML/JSON with libraries like [hoplite](https://github.com/sksamuel/hoplite). To persist big amount of data - use [H2](https://www.h2database.com/html/main.html)
🙌 1
k
is it MPP?
d
Nope