美文网首页
cocopods统一对Pods版本进行约束

cocopods统一对Pods版本进行约束

作者: song91425 | 来源:发表于2024-03-20 11:24 被阅读0次

    在PodFile文件的最后以后,添加下述命令:

    1 对iOS版本进行约束,所以依赖的Pods最低版本为11

    post_install do |installer|
    
      installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
          config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
        end
      end
    end
    

    2 对MacOS版本进行约束,所以依赖的Pods最低版本为10.13

    post_install do |installer|
      installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
          if target.platform_name == :osx
            config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.13'
          end
        end
      end
    end
    
    

    最后执行 pod install 就可以了

    相关文章

      网友评论

          本文标题:cocopods统一对Pods版本进行约束

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