0

Firebase가 4.0으로 업데이트되어 코드가 많이 손상되었으므로 설치를 3.x-ish로 유지해야합니다. 나와 함께 그래서 나는 이것을 전에 해본 적이 없다,하지만이 같은 오류를 얻을 : 코코아 패드가있는 Firebase의 이전 버전을 유지하십시오.

pod 'Firebase/Database', '3.1.2' 
pod 'Firebase/Auth', '3.1.1' 
pod 'Firebase/RemoteConfig', '1.3.4' 
pod 'Firebase/Messaging', '1.2.3' 

가 Btw은 내가에 pod repo update을 시도 :

[!] Unable to satisfy the following requirements: 

- `Firebase/RemoteConfig (= 1.3.4)` required by `Podfile` 
- `Firebase/RemoteConfig (= 1.3.4)` required by `Podfile` 

None of your spec sources contain a spec satisfying the dependency: `Firebase/RemoteConfig (= 1.3.4)`. 

You have either: 
* out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`. 
* mistyped the name or version. 
* not added the source repo that hosts the Podspec to your Podfile. 

Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default. 

이 내 podfile에서 동결하려고 방법입니다 아무 소용이.

답변

0

이것은 고정 :

pod 'Firebase/Database', '<4' 
pod 'Firebase/Auth', '<4' 
pod 'Firebase/RemoteConfig', '<4' 
pod 'Firebase/Messaging', '<4' 
+0

오른쪽 - subspecs는 중포 기지 포드의 버전, 특정 의존 포드 아닌 버전이 –