react-native-ad-manager-tss
v1.0.4
Published
A react-native component for Google Ad Manager banners, interstitials, native, rewardeds and appopen ads.
Downloads
12
Readme
react-native-ad-manager-tss
A react-native module for Google Ad Manager Banners, Interstitials, Rewardeds , OpenApp and Native ads.
The banner types are implemented as components while the interstitial and rewarded video have an imperative API.
Native ads are implemented as wrapper for a native view.
Installation
You can use npm or Yarn to install the latest version.
npm:
npm i --save react-native-ad-manager-tss
Yarn:
yarn add react-native-ad-manager-tss
Mostly automatic installation
If your react native project does not use auto linking, you can link manually by running:
`$ react-native link react-native-ad-manager`
Alternatively for iOS you can install the library with CocoaPods by adding a line to your Podfile
;
pod 'react-native-ad-manager-tss', path: '../node_modules/react-native-ad-manager-tss'
iOS
For iOS you will have to add the Google Mobile Ads SDK to your Xcode project.
Android
On Android the Ad Manager library code is part of Play Services, which is automatically added when this library is linked.
But you still have to manually update your AndroidManifest.xml
, as described in the Google Mobile Ads SDK documentation.
###GAM
iOS
Activate as Ad Manager app by editing your Info.plist
+ <key>GADIsAdManagerApp</key>
+ <true/>
Add transport security rules in Info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsForMedia</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
</dict>
**Android(())
Activate as Ad Manager app
<manifest>
<application>
+ <meta-data android:name="com.google.android.gms.ads.AD_MANAGER_APP" android:value="true"/>
</application>
</manifest>
Usage
import {
Banner,
Interstitial,
PublisherBanner,
NativeAdsManager,
} from 'react-native-ad-manager-tss'
// Display a DFP Publisher banner
<Banner
adSize="fullBanner"
adUnitID="your-ad-unit-id"
testDevices={[PublisherBanner.simulatorId]}
onAdFailedToLoad={error => console.error(error)}
onAppEvent={event => console.log(event.name, event.info)}
/>
// Display an interstitial
Interstitial.setAdUnitID('your-ad-unit-id');
Interstitial.setTestDevices([Interstitial.simulatorId]);
Interstitial.requestAd().then(() => Interstitial.showAd());
// Native ad
import NativeAdView from './NativeAdView';
const adsManager = new NativeAdsManager('your-ad-unit-id', [
Interstitial.simulatorId,
]);
<NativeAdView
targeting={{
customTargeting: {group: 'user_test'},
categoryExclusions: ['media'],
contentURL: 'test://',
publisherProvidedID: 'provider_id',
}}
style={{width: '100%'}}
adsManager={adsManager}
validAdTypes={['native', 'template']}
customTemplateIds={['your-template-id-1', 'your-template-id-2']}
onAdLoaded={ad => {
console.log(ad);
}}
onAdFailedToLoad={error => {
console.log(error);
}}
/>
See the NativeAdView component in the example NativeAdView. For a full example reference to the example project.
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT