还有一个repo的开发分支需要Swift 2.0(因此需要IOS 9.0的基本SDK)和PodSpec,如下所示:
Pod::Spec.new do |s| s.name = 'ReachabilitySwift' s.version = '2.0-beta1' s.homepage = 'https://github.com/ashleymills/Reachability.swift' s.authors = { 'Ashley Mills' => 'ashleymills@mac.com' } s.summary = 'Replacement for Apple\'s Reachability re-written in Swift with callbacks.' s.license = { :type => 'MIT' }# Source Info s.ios.platform = :ios,"9.0" s.osx.platform = :osx,"10.11" s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.9" s.source = { :git => 'https://github.com/ashleymills/Reachability.swift.git',:branch => 'develop',:tag => 'v'+s.version.to_s } s.source_files = 'Reachability.swift' s.framework = 'SystemConfiguration' s.requires_arc = trueend
PodSpec在使用Xcode 8.3构建时无法验证(pod spec lint).如何强制它使用最新的Xcode-beta?
解决方法 您可以在Xcode首选项“位置”选项卡中轻松更改命令行工具版本,并将“命令行工具”更改为Xcode 7.0.这应该与“pod lib lint”相结合.
总结以上是内存溢出为你收集整理的CocoaPods – 使用Xcode-beta为iOS 9 / Swift 2构建全部内容,希望文章能够帮你解决CocoaPods – 使用Xcode-beta为iOS 9 / Swift 2构建所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)