解决:The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range ...
解决方案:将下述内容添加在PodFile的最下方,重新执行Pod install。post_install do |installer|installer.pods_project.targets.each do |target|target.build_configurations.each do |config|config.bu...
·
解决方案:
将下述内容添加在PodFile的最下方,重新执行Pod install。
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '8.0'
end
end
end
注意:修改版本号与你的 platform :ios, '8.0' 一致。
更多推荐



所有评论(0)