Reputation: 1
I am facing problem to install pod for Firebase In-App Messaging. In my code, I have already firebase pod installed("Firebase/core") on platform 9.0. Now I want to integrate Firebase In-App Messaging in my app, so try to install the pod for Firebase In-App Messaging on Xcode 10.1. But get the error : "[!] CocoaPods could not find compatible versions for pod "Firebase/InAppMessagingDisplay": In Podfile: Firebase/InAppMessagingDisplay
None of your spec sources contain a spec satisfying the dependency: Firebase/InAppMessagingDisplay
.
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."
I tried all the things which are given on google and stack flow. I update my pod file, I also update cocoa pod. I tried every possibility but not able to fix my problem.
Upvotes: 0
Views: 994
Reputation: 4060
Remove version number and try to run as below
pod 'Firebase/Core'
pod 'Firebase/InAppMessagingDisplay'
Upvotes: 0