我在我的项目中使用 couchbaselite 企业。将XCODE从10.3升级到11.2后,我收到此错误消息。(使用 Swift 5.1 编译的模块不能被 Swift 5.1.2 编译器导入)
我的 podfile 是这样的:
# Uncomment the next line to define a global platform for your project
# platform :ios, '11'
target 'Imece' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'SwiftyJSON', '~> 4.2'
pod 'FSCalendar', '~> 2.7.9'
pod 'CouchbaseLite-Swift-Enterprise', '~> 2.6.1'
pod 'Alamofire'
end
我尝试了以下解决方案,但没有任何区别。在 XCODE 更改中
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
使用 Swift 5.1 编译的模块不能被 Swift 5.1.2 编译器导入
我还尝试构建此处提到的(couchbaselite)框架文件
https://github.com/couchbase/couchbase-lite-ios#how-to-build-the-framework-files
但我得到了BUILD_FAILED
错误。
有没有其他解决方案可以摆脱这种情况?