Skip to content

Commit 4393ef2

Browse files
authored
Update README.md
Updated docs
1 parent 52eaff1 commit 4393ef2

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

README.md

+34-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,12 @@ Under `protected List<ReactPackage> getPackages() {`:
7777
### Usage
7878

7979
```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'
8186

8287
// Display a banner
8388
<AdMobBanner
@@ -94,11 +99,14 @@ import { AdMobBanner, AdMobInterstitial, PublisherBanner} from 'react-native-adm
9499
didFailToReceiveAdWithError={this.bannerError}
95100
admobDispatchAppEvent={this.adMobEvent} />
96101

97-
98102
// Display an interstitial
99103
AdMobInterstitial.setAdUnitID('your-admob-unit-id');
100104
AdMobInterstitial.setTestDeviceID('EMULATOR');
101105
AdMobInterstitial.requestAd(AdMobInterstitial.showAd);
106+
107+
// Display a rewarded ad
108+
AdMobRewarded.setAdUnitID('your-admob-unit-id');
109+
AdMobRewarded.requestAd(AdMobRewarded.showAd);
102110
```
103111

104112
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
177185
*Note that `interstitialWillLeaveApplication` and `onAdLeftApplication` are not exactly the same but share one event in this library.*
178186

179187

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+
180212
---
181213

182214
### TODO

0 commit comments

Comments
 (0)