Running the pod install in React-native-firebase Messaging

Viewed 999

CocoaPods could not find compatible versions for pod "Firebase/Messaging".

In Podfile: RNFBMessaging (from ../node_modules/@react-native-firebase/messaging) was resolved to 10.1.1, which depends on Firebase/Messaging (~> 7.1.0)

Specs satisfying the Firebase/Messaging (~> 7.1.0) dependency were found, but they required a higher minimum deployment target.

1 Answers

Change your platform :ios, 'your value' to platform :ios, '10.0' or above from platform/ios/Podfile file.

It worked for me.

Related