Reputation: 601
I am trying to install pod Firebase/Performance as mention in Firebase doc https://firebase.google.com/docs/ios/setup#available_pods but when I tried I got issue.
[!] Unable to satisfy the following requirements:
- `Firebase/Performance` required by `Podfile`
Specs satisfying the `Firebase/Performance` dependency were found, but they required a higher minimum deployment target.
Upvotes: 0
Views: 1177
Reputation: 817
That error is misleading. This message often occurs if you have dependencies (of Firebase Performance) that are pinned to specific versions that are lower that what Firebase Performance needs. For example, if you've pinned Firebase/Analytics to 3.x, you'd get that error because Firebase Performance requires 4.x of Firebase/Core.
In summary, try removing any version pins related to Firebase specs in your Podfile.
Upvotes: 1