我有一个包含2个项目的工作区。第一个项目是基础项目。第二个包含作为框架链接的第一个项目。 如何为第二个项目编写podspec?这是我的podspec文件:
Pod::Spec.new do |s|
s.name = "Core"
s.version = ...
s.summary = ...
s.description = ...
s.homepage = ...
s.license = { :type => "MIT", :file => "LICENSE.txt"}
s.author = ...
s.platform = ...
s.source = ...
s.source_files = ...
s.dependency 'RxSwift', '~> 3.0.0'
s.dependency 'RxCocoa', '~> 3.0'
s.dependency 'ObjectMapper'
s.dependency 'Moya', '8.0.0-beta.5'
s.dependency 'Moya/RxSwift'
s.dependency 'MTDates'
s.dependency 'CryptoSwift'
s.subspec 'Child' do |cinema|
cinema.source_files = ...
cinema.resources = ...
cinema.frameworks = "Core"
end
end
但是当我试图抓住它时,我得到了错误"没有这样的模块'核心'"