Reputation: 52
After upgrading to Xcode 12 / iOS 14 my project is no longer compiling/importing the SQLite3 library because it is previously defined in the iOS 14 usr/include.
Is this something that I can fix in my build settings? Can I remove it from the usr/include?
The project uses a mix of ObjC/Swift, CocoaPods is bringing in SQLite.swift
Upvotes: 2
Views: 753
Reputation: 52
I've found a temporary solution by using an experimental branch for this CocoaPod. Anyone else experiencing this problem should try:
pod 'SQLite.swift/standalone', :git => 'https://github.com/stephencelis/SQLite.swift', :branch => 'master'
Upvotes: 1