Question posted in Xcode
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
4
Answers
AdMob just did a major version update to 8.0.0 with several API changes.
Either
pod 'Google-Mobile-Ads-SDK', '~> 7.69'
GoogleMobileAds 8.0.0 iOS GADInterstitialAd FullScreen Ads Code:
// In .h File
// In .m file
// Call showAdmobAdsFullScreen whenever you want to show fullscreen ads
// admob delegates
Example of using GADInterstitialAd in GoogleMobileAds 8.0 (Admob iOS)
If you are NOT seeing the following warning in your list of imports:
…yet you ARE seeing the following warning elsewhere in your code:
…check that you are not muddling the implementation for v7 and v8 of the
Google-Mobile-Ads-SDK
SDK.GADInterstitial
GADInterstitialAd
https://developers.google.com/admob/ios/migration
By default, even if you don’t specify a version in your Podfile, you may find that v7 is what has been downloaded; yet Google’s documentation gives you the instructions for implementing v8.