-
Hi, Recently i try use this lib to create native ads in my app, but case i try use Admob firebase lib for create my ads banner and interstitial i receive this error, any can help me ? my deps
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
So you have two admob dependencies at once, and they have conflicting transitive dependencies? This one in particular is not in react-native-firebase control, it's from upstream firebase-ios-sdk https://github.com/CocoaPods/Specs/blob/455406ece920a20cad26fc8551890e5db3823aeb/Specs/0/3/5/Firebase/7.8.1/Firebase.podspec.json#L103 / https://github.com/firebase/firebase-ios-sdk/blob/721a7de3bd573fcbc50d9112d66d6136918ac30f/Firebase.podspec#L73 Unfortunately you can't just use both and force one to accept the other's version in your Podfile as there are a number of breaking changes in the shift to Google-Mobile-Ads-SDK v8 https://developers.google.com/admob/ios/migration So you'll need to ask on firebase-ios-sdk (as a question in their github repository) if they have any intention of forward-porting to v8. |
Beta Was this translation helpful? Give feedback.
So you have two admob dependencies at once, and they have conflicting transitive dependencies?
I think you'll either need to pick one, or it's possible you will always struggle to match up the versions expected by both
This one in particular is not in react-native-firebase control, it's from upstream firebase-ios-sdk https://github.com/CocoaPods/Specs/blob/455406ece920a20cad26fc8551890e5db3823aeb/Specs/0/3/5/Firebase/7.8.1/Firebase.podspec.json#L103 / https://github.com/firebase/firebase-ios-sdk/blob/721a7de3bd573fcbc50d9112d66d6136918ac30f/Firebase.podspec#L73
Unfortunately you can't just use both and force one to accept the other's version in your Podfile as there are a number of breaki…