Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No such module 'GoogleMobileAds'

After upgrading Google Mobile SDK 8.0 via Cocoapods, Xcode throws me error 'No such Module 'GoogleMobileAds'. I did my search but nothing helped me so far.

I already did these steps:

rm -rf ~/Library/Caches/CocoaPods
rm -rf Pods
rm -rf ~/Library/Developer/Xcode/DerivedData/*
pod deintegrate
pod setup
pod install
Also removed Podfile, Podfile.lock and xcworkspace file before pod install

I am sharing some screenshots for you to help me what I am doing wrong.

enter image description here

enter image description here

enter image description here

enter image description here Thanks in advance

like image 923
Emin Turk Avatar asked Sep 01 '25 03:09

Emin Turk


1 Answers

I believe this is a known issue, my specific scenario was for flutter, but I guess the concept is the same just set the version back to

 pod 'Google-Mobile-Ads-SDK', '~> 7.69.0'

That did the trick for me. You can read more about it here.

like image 163
Terblanche Daniel Avatar answered Sep 02 '25 17:09

Terblanche Daniel