お世話になっております。
現在iOSアプリ開発を勉強しているのですが、AdMobの実装に苦戦しており、みなさまの知恵をお借りしたく。
##実現したいこと
開発中のアプリにインタースティシャル広告/リワード広告を実装しようとしています。シミュレーターでは無事実装できたのですが、実機でテストした際には表示がされません。ログには下記エラーメッセージが出ております。
エラーメッセージ
errorMessage
1Failed to load interstitial ad with error: Request Error: No ad to show. 2 3Rewarded ad failed to load with error: Cannot find an ad network adapter with the name(s): com.google.DummyAdapter. Remember to link all required ad network adapters and SDKs, and set -ObjC in the 'Other Linker Flags' setting of your build target.
####コード
RewardAd
1import Foundation 2import GoogleMobileAds 3 4class RewardedAdDelegate: NSObject, GADFullScreenContentDelegate, ObservableObject { 5 static var instance = RewardedAdDelegate() 6 var rewardedAd: GADRewardedAd? 7 8 override init() { 9 super.init() 10 let request = GADRequest() 11 // これはテストIDなので、リリース時に自分のリワード広告IDに書き換える 12 GADRewardedAd.load(withAdUnitID: "ca-app-pub-8123415297019784/9501821136", 13 request: request, completionHandler: { (ad, error) in 14 if let error = error { 15 print("Rewarded ad failed to load with error: (error.localizedDescription)") 16 return 17 } 18 self.rewardedAd = ad 19 self.rewardedAd?.fullScreenContentDelegate = self 20 } 21 )} 22 23 // 広告を表示して報酬を獲得する 24 func showRewardedAd() { 25 let root = UIApplication.shared.windows.first?.rootViewController 26 if let ad = rewardedAd { 27 ad.present(fromRootViewController: root!, 28 userDidEarnRewardHandler: { 29 print("報酬を獲得しました。") 30 })} else { 31 print("Ad wasn't ready") 32 } 33 } 34 35 // Tells the delegate that the rewarded ad was presented. 36 func adDidPresentFullScreenContent(_ ad: GADFullScreenPresentingAd) { 37 } 38 39 // Tells the delegate that the rewarded ad was dismissed. 40 func adDidDismissFullScreenContent(_ ad: GADFullScreenPresentingAd) { 41 let request = GADRequest() 42 GADRewardedAd.load(withAdUnitID: "ca-app-pub-8123415297019784/9501821136", 43 request: request, completionHandler: { (ad, error) in 44 if let error = error { 45 print("Rewarded ad failed to load with error: (error.localizedDescription)") 46 return 47 } 48 self.rewardedAd = ad 49 self.rewardedAd?.fullScreenContentDelegate = self 50 } 51 ) 52 } 53 54 // Tells the delegate that the rewarded ad failed to present. 55 func ad(_ ad: GADFullScreenPresentingAd, 56 didFailToPresentFullScreenContentWithError error: Error) { 57 print("Rewarded ad failed to present with error: (error.localizedDescription).") 58 } 59} 60
試したこと
・実機の設定、プライバシー>トラッキング>Appからのトラッキングの要求を許可>On になっていることを確認した。
###お願い
なぜ実機でインタースティシャル広告/リワード広告が表示できないか、ご存知でしたらご教示お願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。