CocoaPods:`Podfile`中的`AFNetworking`有重复的依赖关系

时间:2015-08-28 19:05:20

标签: ios afnetworking cocoapods

我正在尝试在需要AFNetworking 2.6版本的WatchOS2项目中使用AFNetworking。我的iPhone应用程序正在使用RestKit,它需要AFNetworking版本1.3.6。

我的cocoapods文件中有以下内容。

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'

target 'MyApp', :exclusive => true do
  pod 'AFNetworking', '1.3.4'
  pod 'RestKit', '~> 0.25.0'
  pod 'SDWebImage', '~>3.7.3'
end

target 'MyApp WatchKit Extension', :exclusive => true do
  pod 'AFNetworking', '2.6.0'
end

我收到以下错误..

  

分析依赖项[!]无法满足以下条件   要求:

     
      AFNetworking (= 1.3.4) 要求
  • Podfile   AFNetworking (= 2.6.0)
  • 要求
  • Podfile   

因为我为目标设置了“:exclusive => true”,所以不应该这样吗?它应该能够使用不同版本的AFNetworking构建每个目标吗?

pod --version : 0.38.2

0 个答案:

没有答案