您好,我是Mapbox的Install pod。我正在关注错误。
Swift窗格MapboxCoreNavigation
依赖于MapboxMobileEvents
,后者未定义模块。要选择生成模块映射的目标(在将其作为静态库构建时从Swift导入它们是必需的),可以在Podfile中全局设置use_modular_headers!
,或为特定依赖项指定:modular_headers => true
。>
这是我的Pod文件
source 'https://github.com/CocoaPods/Specs.git'
target ‘DailyWages’ do
pod 'GoogleMaps'
pod 'GooglePlaces'
pod 'MapboxNavigation'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
请帮助。将帮助您。
答案 0 :(得分:0)
“ use_modular_headers!”帮助了我。
在此行之后添加:“目标'DailyWages'做”