-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remote Config does not work with custom SQLite3 libraries #10884
Comments
I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight. |
Thanks for the report. I'm not sure that the suggested change would redirect the Remote Configuration to point to alternative headers for the sqlite3. Also, there may be other issues since we only test with the system sqlite3. |
In the context of Package.swift builds, It does indeed look for other headers because there is nothing in the I can continue with my fork, but I thought I would point this out as it is a blocker for Firebase adoption for anyone doing spatialite and geos stuff with iOS, and probably many other applications that require sqlite features not in Apples platform build. |
Thanks. We may want to consider an alternative to sqlite3 for the Remote Config implementation. |
Any update here? It's been a year. |
We do not have plans to allocate dev time to make this change. Would you be willing to contribute a patch based on the code posted by Aaron above? |
Closed via #12548. Thanks, @cprince-foreflight, for the fix! |
Description
Currently
SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
is passed tosqlite3_open_v2(...)
in- (void)createOrOpenDatabase
inRCNConfigDBManager.m
.If an app eschews the standard Apple sqlite3 library shipped on iOS and uses their own custom sqlite3 build with source directly from the SQLite3 repo, the
SQLITE_OPEN_FILEPROTECTION_COMPLETEUNTILFIRSTUSERAUTHENTICATION
flag does not exist as Apple has only implemented this in their version of sqlite3 and not contributed it back to the main repo.We cannot use the Apple's sqlite3 implementation as we need additional spatial querying capabilities built into the library for our application. It would be useful if Remote Config checked if the flag exists before using it.
e.g.:
Reproducing the issue
No response
Firebase SDK Version
10.6.0
Xcode Version
14.2.0
Installation Method
Swift Package Manager
Firebase Product(s)
Remote Config
Targeted Platforms
iOS
Relevant Log Output
No response
If using Swift Package Manager, the project's Package.resolved
Expand
Package.resolved
snippetReplace this line with the contents of your Package.resolved.
If using CocoaPods, the project's Podfile.lock
Expand
Podfile.lock
snippetReplace this line with the contents of your Podfile.lock!
The text was updated successfully, but these errors were encountered: