What is everyone's database layer of choice for An...
# android
n
What is everyone's database layer of choice for Android? (such as Room)
a
I use dbflow, though I’m not on 5.0.0. Coroutine support was added in the alpha builds https://github.com/agrosner/DBFlow
🎉 2
n
That looks nice. Does it generate a DSL? It seems like it does
a
l
I'd say SQLDelight because you write the SQL, and all the Kotlin multiplatform code is generated for you.
😍 1
I will likely use it for new projects and move to it, but for now, I'm using Room FYI, and a recent version added
suspend
functions support in DAOs, which is nice.
a
SQLDelight sounds really nice, especially if it’s multiplatform
b
We use Couchbase Lite for running continuous replication of data with cloud.
m
Realm is good, but if you are looking for SQL wrapper in Android then Room is good
s
Room