推荐使用:React Native Google Mobile Ads,轻松实现移动应用广告集成
React Native Google Mobile Ads 是一个用于在 React Native 应用中集成 Google Mobile Ads SDK 的库。以下是如何使用这个库的一个基本示例:
首先,确保你的项目已经安装了 react-native-google-mobile-ads
包。如果还没有安装,可以使用 npm 或 yarn 来安装:
npm install react-native-google-mobile-ads
# 或者
yarn add react-native-google-mobile-ads
然后,你需要链接原生模块到你的项目中,这一步通常是自动完成的,但如果需要,你可以手动运行以下命令来链接模块:
react-native link react-native-google-mobile-ads
最后,在你的 React Native 应用中,你可以按照以下方式集成和使用广告:
import {
AdRequest,
InterstitialAd,
RewardedAd,
BannerAd,
} from 'react-native-google-mobile-ads';
// 初始化广告请求
const adRequest = new AdRequest();
// 设置个性化广告标识(可选)
adRequest.addKeyword("game");
adRequest.setBirthday(new Date(1990, 1, 2));
adRequest.setGender(AdRequest.GENDER_MALE);
// 初始化全屏广告
const interstitialAd = InterstitialAd.createAd(
'ca-app-pub-3940256099942544/1033173712' // 全屏广告单元ID
);
// 加载全屏广告
interstitialAd.loadAd(adRequest.build());
// 监听全屏广告的事件
interstitialAd.on('didFailToReceiveAd', error => {
console.error('全屏广告加载失败', error);
});
interstitialAd.on('didLoad', () => {
console.log('全屏广告加载成功');
if (interstitialAd.isLoaded()) {
interstitialAd.show(); // 显示全屏广告
}
});
// 初始化视频广告
const rewardedAd = RewardedAd.createAd(
'ca-app-pub-3940256099942544/5224354917' // 视频广告单元ID
);
// 加载视频广告
rewardedAd.loadAd(adRequest.build(), new RewardedAd.RewardListener({
onRewarded: (reward) => {
console.log('得到的奖励', reward);
},
onRewardUserClosedAd: () => {
console.log('用户关闭了视频广告');
},
onRewardedAdUserClosedAd: () => {
console.log('用户在看广告时关闭了它');
},
}));
// 在适合的时机展示视频广告
if (rewardedAd.isLoaded()) {
rewardedAd.show();
}
// 初始化Banner广告
const bannerAd = new BannerAd(
'ca-app-pub-3940256099942544/6300978111' // Banner广告单元ID
);
// 加载Banner广告
bannerAd.loadAd(adRequest.build());
// 监听Banner广告的事件
bannerAd.on('didFailToReceiveAd', error => {
console.error('Banner广告加载失败', error);
});
bannerAd.on('didLoad', () => {
console.log('Banner广告加载成功');
});
// 在适
评论已关闭