如何构建依赖于特定react-native版本的私有CocoaPod?

时间:2017-11-08 05:55:54

标签: git react-native cocoapods podspec

我正在尝试为我的Cocoa Touch Framework(swift 4.0版)构建一个私有cocoapod,它依赖于React-Native v0.46.4和Yoga,使用这个podspec:

react_native_version = '0.46.4'

Pod::Spec.new do |s|
  s.name             = 'MyLibrary'
  s.version          = '0.1.0'

  s.source           = { :git => 'https://github.com/mylibrary.git', :tag => s.version.to_s,
                         :git => 'https://github.com/facebook/react-native.git', :tag => "v#{react_native_version}"
                       }

  s.platform       = :ios, '11.0'
  s.requires_arc   = true

  s.source_files        = 'MyLibrary/Classes/**/*.swift'
  s.resources           = 'MyLibrary/Assets/*.{png,storyboard}'
  s.public_header_files = 'MyLibrary/Classes/**/*.h'

  s.frameworks = 'UIKit', 'ARKit', 'SceneKit', 'SpriteKit'

  s.dependency 'ADAL', '~> 2.2'

  s.dependency 'Yoga', "#{react_native_version}.React"
  s.dependency 'React/Core', react_native_version
  s.dependency 'React/BatchedBridge', react_native_version
  s.dependency 'React/DevSupport', react_native_version
  s.dependency 'React/RCTText', react_native_version
  s.dependency 'React/RCTImage', react_native_version
  s.dependency 'React/RCTLinkingIOS', react_native_version
  s.dependency 'React/RCTSettings', react_native_version
  s.dependency 'React/RCTVibration', react_native_version
  s.dependency 'React/RCTGeolocation', react_native_version
  s.dependency 'React/RCTActionSheet', react_native_version
  s.dependency 'React/RCTAnimation', react_native_version
  s.dependency 'React/RCTNetwork', react_native_version
  s.dependency 'React/RCTWebSocket', react_native_version

End

当我像这样运行pod lib lint时,我无法通过linter检查:

pod lib lint MyLibrary.podspec --sources = https://github.com/facebook/react-native.git,master

-> MyLibrary (0.1.0)
- WARN  | source: The version should be included in the Git tag.
- ERROR | [iOS] unknown: Encountered an unknown error (An 
 unexpected version directory `Base` was encountered for the 
 `/Users/administrator/.cocoapods/repos/facebook/React` Pod in the 
 `React` > repository.

我已阅读https://guides.cocoapods.org上的文档并进行了大量浏览,但仍不确定这是否是正确的 podspec 语法,以引用特定版本的存储库,或者这是否支持?

(我正在使用CocoaPods 1.3.1 XCode9和Swift 4。)

1 个答案:

答案 0 :(得分:1)

Podfile能够覆盖 where 以查找依赖项。例如。 git repo / tag。例如。 pod 'React', :git => 'https://github.com/artsy/React.git', :tag => '0.7.0'

Podspec决定了依赖是什么。例如s.dependency 'React'

相关问题