安装pod时收到此错误日志。
[!] CocoaPods could not find compatible versions for pod "RxSwift":
In snapshot (Podfile.lock):
RxSwift (= 4.1.2, ~> 4.0)
In Podfile:
FrameworkA (~> 4.0) was resolved to 4.0.4, which depends on
RxSwift (~> 4.0)
FrameworkB (~> 1.0) was resolved to 1.0.4, which depends on
RxSwift (~> 3.0)
我明白什么是问题。因为两个框架需要相同的库但不同的版本。 (...对吧?)
但我必须使用FrameworkA为~> 4.0
且FrameworkB为~> 1.0
的版本。
我的案例有哪些解决方案?