@@ -77,7 +77,12 @@ Under `protected List<ReactPackage> getPackages() {`:
77
77
### Usage
78
78
79
79
``` javascript
80
- import { AdMobBanner , AdMobInterstitial , PublisherBanner } from ' react-native-admob'
80
+ import {
81
+ AdMobBanner ,
82
+ AdMobInterstitial ,
83
+ PublisherBanner ,
84
+ AdMobRewarded
85
+ } from ' react-native-admob'
81
86
82
87
// Display a banner
83
88
< AdMobBanner
@@ -94,11 +99,14 @@ import { AdMobBanner, AdMobInterstitial, PublisherBanner} from 'react-native-adm
94
99
didFailToReceiveAdWithError= {this .bannerError }
95
100
admobDispatchAppEvent= {this .adMobEvent } / >
96
101
97
-
98
102
// Display an interstitial
99
103
AdMobInterstitial .setAdUnitID (' your-admob-unit-id' );
100
104
AdMobInterstitial .setTestDeviceID (' EMULATOR' );
101
105
AdMobInterstitial .requestAd (AdMobInterstitial .showAd );
106
+
107
+ // Display a rewarded ad
108
+ AdMobRewarded .setAdUnitID (' your-admob-unit-id' );
109
+ AdMobRewarded .requestAd (AdMobRewarded .showAd );
102
110
```
103
111
104
112
For a full example reference to the [ example project] ( Example ) .
@@ -177,6 +185,30 @@ Unfortunately, events are not consistent across iOS and Android. To have one uni
177
185
* Note that ` interstitialWillLeaveApplication ` and ` onAdLeftApplication ` are not exactly the same but share one event in this library.*
178
186
179
187
188
+ #### AdMobRewarded
189
+
190
+ Opens a rewarded AdMob ad.
191
+
192
+ ##### Methods
193
+ | Name | Description |
194
+ | ---------------------------| -----------------------------------------------------------------------------------------------------------------|
195
+ | ` setAdUnitID(adUnitID) ` | sets the AdUnit ID for all future ad requests. |
196
+ | ` setTestDeviceID(deviceID) ` | sets the test device ID |
197
+ | ` requestAd(callback) ` | requests a rewarded ad|
198
+ | ` showAd(callback) ` | shows a rewarded if it is ready |
199
+
200
+ ##### Events
201
+
202
+ | iOS | * this library* | Android |
203
+ | --------------------------------------------| -----------------------------------| ----------------------------------|
204
+ | ` rewardBasedVideoAd:didRewardUserWithReward ` | ` rewardedVideoDidRewardUser ` | ` onRewarded ` |
205
+ | ` rewardBasedVideoAdDidReceiveAd ` | ` rewardedVideoDidLoad ` | ` onRewardedVideoAdLoaded ` |
206
+ | ` rewardBasedVideoAd:didFailToLoadWithError ` | ` rewardedVideoDidFailToLoad ` | ` onRewardedVideoAdFailedToLoad ` |
207
+ | ` rewardBasedVideoAdDidOpen ` | ` rewardedVideoDidOpen ` | ` onRewardedVideoAdOpened ` |
208
+ | ` rewardBasedVideoAdDidClose ` | ` rewardedVideoDidClose ` | ` onRewardedVideoAdClosed ` |
209
+ | ` rewardBasedVideoAdWillLeaveApplication ` | ` rewardedVideoWillLeaveApplication ` | ` onRewardedVideoAdLeftApplication ` |
210
+
211
+
180
212
---
181
213
182
214
### TODO
0 commit comments