我是一个额外的目标,它是今天的小部件。我试图为这个目标添加一些播放器,但我没有得到这样的模块' xxx'当我尝试导入一个模块时,就像它在我的主要目标上工作一样。这是我已经完成的事情,
podfile
target 'My-Project' do
use_frameworks!
pod 'SwiftyUserDefaults'
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
end
target 'My-Widget' do
use_frameworks!
pod 'SwiftyUserDefaults'
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
pod --version
是1.0.1 我怎样才能让它发挥作用?
答案 0 :(得分:1)
似乎cocoapods版本有点过时了。在某些情况下(特别是考虑到不断变化的swift,xcode和cocoapods),它可能会导致令人沮丧的后果。幸运的是,通过更新cocoapods很容易解决这个问题。