Rewarded Video
Rewarded video is a user-initiated ad type. It allows end-users to get in-app rewards or other benefits in exchange for viewing a video ad.
Check If Ad Is Loaded
You can check whether or not an ad is loaded at a certain moment. This method returns a boolean value, representing the rewarded video ad loading status.
- UPM Distribution
- Manual Distribution
Appodeal.IsLoaded(AppodealAdType.RewardedVideo);
Appodeal.isLoaded(Appodeal.REWARDED_VIDEO);
Check Ad Loading Status
We recommend you always check whether an ad is available before trying to show it.
Example:
- UPM Distribution
- Manual Distribution
if(Appodeal.IsLoaded(AppodealAdType.RewardedVideo)) {
Appodeal.Show(AppodealShowStyle.RewardedVideo);
}
if(Appodeal.isLoaded(Appodeal.REWARDED_VIDEO)) {
Appodeal.show(Appodeal.REWARDED_VIDEO);
}
Display
To show a rewarded video ad, you need to call the following method:
- UPM Distribution
- Manual Distribution
Appodeal.Show(AppodealShowStyle.RewardedVideo);
Appodeal.show(Appodeal.REWARDED_VIDEO);
You can use our demo app as a reference project.
Demo App
If you want to use advanced Rewarded Video integration, you can find detailed documentation here