I was facing an issue with the react-native-google-mobile-ads
package. What resolved the problem for me was removing the caret (^
) from the version number in package.json
.
Originally, I had:
"react-native-google-mobile-ads": "^15.4.0"
I changed it to:
"react-native-google-mobile-ads": "15.4.0"