You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
In #2856, we removed cURL in favor of native Android APIs. However, we're still using a compiled version of SQLite, since the SQLite library that ships with Android is inaccessible and only exposed in Java.
There are two ways to accomplish this:
Implement the low-level API (sqlite3.hpp with a backend that uses Ithe Java API calls
I got started on implementing the low-level API, but the Java bindings are a little overengineered and it doesn't seem to be possible to replicate the interface we're using in sqlite3.hpp with the Java bindings without massive changes. That leaves implementing OfflineDatabase as the only alternative. I'm not feeling super good about adding a second implementation that needs to maintain parity. Thoughts @jfirebaugh?
In #2856, we removed cURL in favor of native Android APIs. However, we're still using a compiled version of SQLite, since the SQLite library that ships with Android is inaccessible and only exposed in Java.
There are two ways to accomplish this:
sqlite3.hpp
with a backend that uses Ithe Java API callsOfflineDatabase
object in Java#2356
The text was updated successfully, but these errors were encountered: