我将以下内容添加到我的Podfile中,以便安装Mantle和Overcoat
pod 'Mantle', '~> 2.0.5'
pod 'Overcoat', '~> 3.1.1'
并运行pod install。它抱怨说:
AFNetworking/Serialization
要求Overcoat/Core (3.1.1)
所以我补充道:
pod 'AFNetworking', '~> 2.6.0'
并运行pod install
此时它现在抱怨:
AFNetworking (~> 2.6.0)
要求Podfile
AFNetworking (= 1.3.4)
Podfile.lock
如何解决这些看似无法解决的依赖关系?