firebase::
gma::
RewardedAd
#include <rewarded_ad.h>
Loads and displays Google Mobile Ads rewarded ads.
Summary
RewardedAd is a single-use object that can load and show a single GMA rewarded ad.
RewardedAd objects provide information about their current state through Futures. Initialize , LoadAd , and Show each have a corresponding Future from which you can determine result of the previous call.
Here's how one might initialize, load, and show an rewarded ad while checking against the result of the previous action at each step:
namespace gma = :: firebase :: gma ; gma :: RewardedAd * rewarded = new gma :: RewardedAd (); rewarded -> Initialize ( ad_parent );
Then, later:
if ( rewarded -> InitializeLastResult (). status () == :: firebase :: kFutureStatusComplete && rewarded -> InitializeLastResult (). error () == firebase :: gma :: kAdErrorCodeNone ) { rewarded -> LoadAd ( "YOUR_AD_UNIT_ID" , my_ad_request ); }
And after that:
if ( rewarded -> LoadAdLastResult (). status () == :: firebase :: kFutureStatusComplete && rewarded -> LoadAdLastResult (). error () == firebase :: gma :: kAdErrorCodeNone )) { rewarded -> Show ( & my_user_earned_reward_listener ); }
Deprecated. The Google Mobile Ads C++ SDK is now deprecated. Please see https://developers.google.com/admob/cpp/reference/namespace/firebase/gma for more information.
Public functions
Initialize
( AdParent
parent)
Future
< void >
InitializeLastResult
() const
Future
< void >
LoadAdLastResult
() const
SetFullScreenContentListener
( FullScreenContentListener
*listener)
void
SetPaidEventListener
( PaidEventListener
*listener)
void
SetServerSideVerificationOptions
(const ServerSideVerificationOptions
& serverSideVerificationOptions)
void
Show
( UserEarnedRewardListener
*listener)
Future
< void >
ShowLastResult
() const
Structs
Options for RewardedAd server-side verification callbacks.
Public functions
Initialize
Future < void > Initialize ( AdParent parent )
Initialize the RewardedAd object.
parent
InitializeLastResult
Future < void > InitializeLastResult () const
Returns a Future containing the status of the last call to Initialize .
LoadAd
Future < AdResult > LoadAd ( const char * ad_unit_id , const AdRequest & request )
Begins an asynchronous request for an ad.
ad_unit_id
|
The ad unit ID to use in loading the ad.
|
request
|
RewardedAd
RewardedAd ()
Creates an uninitialized RewardedAd object.
Initialize must be called before the object is used.
SetFullScreenContentListener
void SetFullScreenContentListener ( FullScreenContentListener * listener )
SetPaidEventListener
void SetPaidEventListener ( PaidEventListener * listener )
Registers a callback to be invoked when this ad is estimated to have earned money.
listener
SetServerSideVerificationOptions
void SetServerSideVerificationOptions ( const ServerSideVerificationOptions & serverSideVerificationOptions )
Sets the server side verification options.
serverSideVerificationOptions
Show
Future < void > Show ( UserEarnedRewardListener * listener )
Shows the RewardedAd .
This should not be called unless an ad has already been loaded.
listener
ShowLastResult
Future < void > ShowLastResult () const
~RewardedAd
~ RewardedAd ()