我试图通过pod将'Mobilisten‘添加到xcode 11中,但得到错误’使用Swift 5.0.1编译的模块无法由Swift 5.1编译器导入‘。
发布于 2020-07-05 18:44:49
您应该尝试更新到Mobilisten 3.1.0
您可以找到更新here的发行说明。
source 'https://github.com/CocoaPods/Specs.git' platform :ios, '9.0' target 'Project Target' do use_frameworks! pod 'Mobilisten', '3.1.0' end
将以上版本的Mobilisten添加到您的Podfile中并运行pod repo update && pod install
pod repo update && pod install
根据所使用的Swift/Xcode版本,您始终可以在安装页面here中找到Mobilisten的兼容性列表。
https://stackoverflow.com/questions/58270907
相似问题