リワード広告は、ユーザーが広告を操作することと引き換えに のアプリ内報酬を獲得しましょう。このガイドでは、 AdMob のリワード広告を Flutter アプリに統合する方法
必ずテスト広告でテストする
アプリを作成、テストする際は、テスト広告ではなく、 配信します。実際の広告を使用すると、アカウントが停止される可能性があります。
テスト広告を読み込むには、専用のテスト広告ユニット ID を使用すると、 リワード広告:
Android
ca-app-pub-3940256099942544/5224354917
iOS
ca-app-pub-3940256099942544/1712485313
テスト広告ユニットは、すべてのリクエストに対してテスト広告を返すように設定されている。 独自のアプリでコーディング、テスト、デバッグを行う際に、自由に使用できます。 必ずご自身の広告ユニット ID に置き換えてください。 。
広告を読み込む
次の例では、リワード広告を読み込みます。
class RewardedExampleState extends State<RewardedExample> { RewardedAd? _rewardedAd; // TODO: replace this test ad unit with your own ad unit. final adUnitId = Platform.isAndroid ? 'ca-app-pub-3940256099942544/5224354917' : 'ca-app-pub-3940256099942544/1712485313'; /// Loads a rewarded ad. void loadAd() { RewardedAd.load( adUnitId: adUnitId, request: const AdRequest(), adLoadCallback: RewardedAdLoadCallback( // Called when an ad is successfully received. onAdLoaded: (ad) { debugPrint('$ad loaded.'); // Keep a reference to the ad so you can show it later. _rewardedAd = ad; }, // Called when an ad request failed. onAdFailedToLoad: (LoadAdError error) { debugPrint('RewardedAd failed to load: $error'); }, )); } }
リワード広告イベント
FullScreenContentCallback
を使用すると、ライフサイクルでリッスンし、
イベント(広告が表示されたか閉じたかなど)によって測定されます。セット
RewardedAd.fullScreenContentCallback
(この広告を表示する前に)
通知を受け取ることができます。この例では、各メソッドを実装し、
というメッセージがコンソールに表示されます。
class RewardedExampleState extends State<RewardedExample> { RewardedAd? _rewardedAd; // TODO: replace this test ad unit with your own ad unit. final adUnitId = Platform.isAndroid ? 'ca-app-pub-3940256099942544/5224354917' : 'ca-app-pub-3940256099942544/1712485313'; /// Loads a rewarded ad. void loadAd() { RewardedAd.load( adUnitId: adUnitId, request: const AdRequest(), adLoadCallback: RewardedAdLoadCallback( // Called when an ad is successfully received. onAdLoaded: (ad) { ad.fullScreenContentCallback = FullScreenContentCallback( // Called when the ad showed the full screen content. onAdShowedFullScreenContent: (ad) {}, // Called when an impression occurs on the ad. onAdImpression: (ad) {}, // Called when the ad failed to show full screen content. onAdFailedToShowFullScreenContent: (ad, err) { // Dispose the ad here to free resources. ad.dispose(); }, // Called when the ad dismissed full screen content. onAdDismissedFullScreenContent: (ad) { // Dispose the ad here to free resources. ad.dispose(); }, // Called when a click is recorded for an ad. onAdClicked: (ad) {}); debugPrint('$ad loaded.'); // Keep a reference to the ad so you can show it later. _rewardedAd = ad; }, // Called when an ad request failed. onAdFailedToLoad: (LoadAdError error) { debugPrint('RewardedAd failed to load: $error'); }, )); } }
ディスプレイ広告
RewardedAd
は、すべてのアプリ コンテンツの上にオーバーレイとして表示され、
静的に配置されます。Flutter のウィジェットツリーには
追加できませんGoogle Chat では
広告を表示するタイミングを選択するには、show()
を呼び出します。
RewardedAd.show()
は OnUserEarnedRewardCallback
を受け取ります。これは、
ユーザーが特典を獲得します。これを実装して、ユーザーに特典を提供しましょう。
広告を視聴することです
_rewardedAd.show(onUserEarnedReward: (AdWithoutView ad, RewardItem rewardItem) { // Reward the user for watching an ad. });
show()
が呼び出されると、このように表示された Ad
は削除できません
ユーザー入力が必要です。RewardedAd
は表示のみ可能です。
1 回だけです。その後の表示の呼び出しは onAdFailedToShowFullScreenContent
をトリガーします。
広告にアクセスする必要がなくなったら、広告を破棄する必要があります。ベスト プラクティス
dispose()
を呼び出すタイミングを
FullScreenContentCallback.onAdDismissedFullScreenContent
と
FullScreenContentCallback.onAdFailedToShowFullScreenContent
コールバック。
これで、これで、アプリにリワード広告を表示できるようになりました。