https://kotlinlang.org logo
#android-architecture
Title
# android-architecture
u

ursus

08/21/2021, 10:47 PM
Do you guys bundle your own sqlite? (to keep control of version, etc)
🤔 1
g

gildor

08/23/2021, 9:15 AM
I think it only makes sense if you heavily depend on some feature of new sql version (like full text search or json5), otherwise it doesn’t look necessary
u

ursus

08/23/2021, 2:36 PM
I've seen some weird crashes on certain devices like this
Copy code
Fatal Exception: android.database.sqlite.SQLiteException: error in trigger subscriber_fake_foreign_key_cascade_delete: no such table: main.finDoc (code 1 SQLITE_ERROR)
even though the table is there, and stuff like that would you think its not sql version related?
g

gildor

08/24/2021, 8:24 AM
I doubt that it related on particular version of sql
7 Views