text podfile swift版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text podfile swift版本相关的知识,希望对你有一定的参考价值。

post_install do |installer|
	installer.pods_project.targets.each do |target|
		if target.name == 'UICircularProgressRing'
			target.build_configurations.each do |config|
				config.build_settings['SWIFT_VERSION'] = '4.0'
			end
		end
		target.build_configurations.each do |config|
			if config.name == 'Debug'
				config.build_settings['OTHER_SWIFT_FLAGS'] = ['$(inherited)', '-Onone']
				config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
			end
		end
	end
end

以上是关于text podfile swift版本的主要内容,如果未能解决你的问题,请参考以下文章

在swift怎么创建podfile文件

如何从特定分支安装 pod?

text 示例Podfile,用于在开始新项目时使用。

Flutter 插件问题(引入插件同时存在静态库与swift)

ReactiveCocoa基本使用

coacoapods中的podfile介绍;如何指定版本号(内容来自官方英文blog)