美文网首页Flutter 好东西
iOS warning: The iOS deployment

iOS warning: The iOS deployment

作者: GODANDDEVIL | 来源:发表于2020-04-24 17:20 被阅读0次

将下述内容添加在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'] = '9.0'
        end
    end
end

NOTE:注意 ['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0' 中的版本号要与你的 platform :ios, '9.0' 一致

相关文章

网友评论

    本文标题:iOS warning: The iOS deployment

    本文链接:https://www.haomeiwen.com/subject/hszfwhtx.html