Skip to content

Commit 3bbb472

Browse files
committed
iOS build
1 parent a4b3331 commit 3bbb472

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

gma/testapp/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://github.com/CocoaPods/Specs.git'
2-
platform :ios, '8.0'
2+
platform :ios, '10.0'
33
# GMA test application.
44
target 'testapp' do
55
pod 'Google-Mobile-Ads-SDK', '8.13.0'

gma/testapp/src/common_main.cc

+7-1
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,8 @@ extern "C" int common_main(int argc, const char* argv[]) {
241241
}
242242

243243
void LoadAndShowAdView(const firebase::gma::AdRequest& ad_request) {
244+
LogMessage("\nLoad and show a banner ad in an AdView:");
245+
LogMessage("===");
244246
// Initialize an AdView.
245247
firebase::gma::AdView* ad_view = new firebase::gma::AdView();
246248
const firebase::gma::AdSize banner_ad_size = firebase::gma::AdSize::kBanner;
@@ -351,6 +353,8 @@ void LoadAndShowAdView(const firebase::gma::AdRequest& ad_request) {
351353
}
352354

353355
void LoadAndShowInterstitialAd(const firebase::gma::AdRequest& ad_request) {
356+
LogMessage("\nLoad and show an interstitial ad:");
357+
LogMessage("===");
354358
// Initialize an InterstitialAd.
355359
firebase::gma::InterstitialAd* interstitial_ad = new firebase::gma::InterstitialAd();
356360
interstitial_ad->Initialize(GetWindowContext());
@@ -407,6 +411,8 @@ void LoadAndShowInterstitialAd(const firebase::gma::AdRequest& ad_request) {
407411

408412
// WIP
409413
void LoadAndShowRewardedAd(const firebase::gma::AdRequest& ad_request) {
414+
LogMessage("\nLoad and show a rewarded ad:");
415+
LogMessage("===");
410416
// Initialize a RewardedAd.
411417
firebase::gma::RewardedAd* rewarded_ad = new firebase::gma::RewardedAd();
412418
rewarded_ad->Initialize(GetWindowContext());
@@ -460,4 +466,4 @@ void LoadAndShowRewardedAd(const firebase::gma::AdRequest& ad_request) {
460466
// Clean up the interstitial ad.
461467
delete rewarded_ad;
462468
rewarded_ad = nullptr;
463-
}
469+
}

0 commit comments

Comments
 (0)