File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
source 'https://github.com/CocoaPods/Specs.git'
2
- platform :ios , '8 .0'
2
+ platform :ios , '10 .0'
3
3
# GMA test application.
4
4
target 'testapp' do
5
5
pod 'Google-Mobile-Ads-SDK' , '8.13.0'
Original file line number Diff line number Diff line change @@ -241,6 +241,8 @@ extern "C" int common_main(int argc, const char* argv[]) {
241
241
}
242
242
243
243
void LoadAndShowAdView (const firebase::gma::AdRequest& ad_request) {
244
+ LogMessage (" \n Load and show a banner ad in an AdView:" );
245
+ LogMessage (" ===" );
244
246
// Initialize an AdView.
245
247
firebase::gma::AdView* ad_view = new firebase::gma::AdView ();
246
248
const firebase::gma::AdSize banner_ad_size = firebase::gma::AdSize::kBanner ;
@@ -351,6 +353,8 @@ void LoadAndShowAdView(const firebase::gma::AdRequest& ad_request) {
351
353
}
352
354
353
355
void LoadAndShowInterstitialAd (const firebase::gma::AdRequest& ad_request) {
356
+ LogMessage (" \n Load and show an interstitial ad:" );
357
+ LogMessage (" ===" );
354
358
// Initialize an InterstitialAd.
355
359
firebase::gma::InterstitialAd* interstitial_ad = new firebase::gma::InterstitialAd ();
356
360
interstitial_ad->Initialize (GetWindowContext ());
@@ -407,6 +411,8 @@ void LoadAndShowInterstitialAd(const firebase::gma::AdRequest& ad_request) {
407
411
408
412
// WIP
409
413
void LoadAndShowRewardedAd (const firebase::gma::AdRequest& ad_request) {
414
+ LogMessage (" \n Load and show a rewarded ad:" );
415
+ LogMessage (" ===" );
410
416
// Initialize a RewardedAd.
411
417
firebase::gma::RewardedAd* rewarded_ad = new firebase::gma::RewardedAd ();
412
418
rewarded_ad->Initialize (GetWindowContext ());
@@ -460,4 +466,4 @@ void LoadAndShowRewardedAd(const firebase::gma::AdRequest& ad_request) {
460
466
// Clean up the interstitial ad.
461
467
delete rewarded_ad;
462
468
rewarded_ad = nullptr ;
463
- }
469
+ }
You can’t perform that action at this time.
0 commit comments