-
-
Notifications
You must be signed in to change notification settings - Fork 84
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
iOS Usage Instructions #427
Comments
@louwers were you able to make any headway on this? |
@louwers progress on my part.
NOTE: will need corresponding header file and bridging header in the project.
@tantaman has a scaffold in the https://github.com/tantaman/xcode-starter repository. However, he's not using the framework in that example. One of the issues I ran into is that I'm using GRDB as a SQLite interface for Swift, rather than the C sqlite API. Prepackaged GRDB uses the iOS shipped version of sqlite3 which won't load extensions (GRDB cannot use the Cocoapods sqlite3 package AFAIK). GRDB does allow for custom sqlite builds but the build of sqlite that GRDB compiles actually doesn't allow extensions either. So you need to change the compilation configuration to remove this flag and then it'll work. |
There is an XCFramework that is distributed, but it is unclear if it can actually be used on iOS.
The text was updated successfully, but these errors were encountered: