高级设置
广告位
您可以为每个广告单元设置广告位名称 (例如 “Rewarded VideoLevels”、“INTER_levelEnd” 或 “RewardedVideoCoinStore”)。 这可以帮助您汇总不同广告位类别的统计数据。 下面的片段展示了如何为不同的广告格式设置广告位名称。
横幅和 MREC
AppLovinMAX.createBanner(«ad-unit-ID», «position»);AppLovinMAX.setBannerPlacement(«ad-unit-ID», «placement»);
import { AdView, AdFormat } from 'react-native-applovin-max';⋮<AdView adUnitId={«ad-unit-ID»} adFormat={AdFormat.BANNER} placement={«placement»} />
import { MRecAd } from 'react-native-applovin-max';⋮MRecAd.createAd(«ad-unit-ID», «position»);MRecAd.setPlacement(«ad-unit-ID», «placement»);
import { AdView, AdFormat } from 'react-native-applovin-max';⋮<AdView adUnitId={«ad-unit-ID»} adFormat={AdFormat.MREC} placement={«placement»} />
插屏广告
import { InterstitialAd } from 'react-native-applovin-max';⋮InterstitialAd.showAd(«ad-unit-ID», «placement»);
激励广告
import { RewardedAd } from 'react-native-applovin-max';⋮RewardedAd.showAd(«ad-unit-ID», «placement»);
静音
您可以在启动应用时将某些 SDK 平台的音频设为关闭。 通过 AppLovin SDK 支持该功能的平台包括 Google 竞价和 Google AdMob、AppLovin、DT Exchange、Google Ad Manager、LINE、Mintegral、腾讯和 Verve。 对于其他平台,请咨询平台客户团队,了解此功能是否可用以及使用方法。
下面的代码片段展示了如何在支持静音的平台中设置静音:
AppLovinMAX.setMuted(true);
AppLovinMAX.setMuted(false);
启用详细日志
通过以下方式启用详细日志:
AppLovinMAX.setVerboseLogging(true);
要验证是否已成功启用详细日志,请查看 AppLovin SDK 日志初始化部分中是否有 Verbose Logging On: true
行。
AppLovin SDKVersion: 11.4.2⋮Verbose Logging On: true⋮
AppLovin SDK 的日志标签为 “/AppLovinSdk: [AppLovinSdk]
”。
Creative ID 和平台名称
您可以调取各个聚合平台已展示广告的 Creative ID 和平台名称。 请参阅 the Creative Debugger documentation 了解更多信息。
DSP 名称
您可以通过广告的 dspName
属性调取 AppLovin Exchange 投放的 MAX 广告的 DSP 名称
InterstitialAd.addAdLoadedEventListener((adInfo: AdInfo) = { console.log("AppLovin Exchange DSP Name: " + adInfo.dspName);}
展示层级用户收入 API
从 React Native Plugin 3.1.1 开始,您可以在客户端访问展示级别的用户收入数据,并且使用此数据来比较不同的来源和 campaign。 您也可以使用 MAX User Revenue API 访问此数据。
您可以针对所有受支持的平台与 Adjust 等移动监测合作伙伴分享展示层级广告收入数据。
您可以在所有广告生命周期回传中调取收入金额。 以下示例展示了如何在 “ad revenue paid” 回传中执行此操作:
InterstitialAd.addAdRevenuePaidListener((adInfo: AdRevenueInfo) => {…});RewardedAd.addAdRevenuePaidListener((adInfo: AdRevenueInfo) => {…});BannerAd.addAdRevenuePaidListener((adInfo: AdRevenueInfo) => {…});MRecAd.addAdRevenuePaidListener((adInfo: AdRevenueInfo) => {…});AppOpenAd.addAdRevenuePaidListener((adInfo: AdRevenueInfo) => {…});
InterstitialAd.addAdRevenuePaidListener((adInfo: AdRevenueInfo) => { const revenue = adInfo.revenue; // Miscellaneous data const countryCode = adInfo.countryCode; // "US" for the United States, etc - Note: Do not confuse this with currency code which is "USD" const networkName = adInfo.networkName; // Display name of the network that showed the ad const adUnitId = adInfo.adUnitId; // The MAX Ad Unit ID const placement = adInfo.placement; // The placement this ad's postbacks are tied to const networkPlacement = adInfo.networkPlacement; // The placement ID from the network that showed the ad});
选择性初始化
从 React Native 模块版本 6.1.0 开始,您可以针对指定广告单元初始化 SDK。 此时,SDK 只会初始化您为指定广告单元配置的广告平台。 (如果未指定任何广告单元,SDK 会假定当前会话需要您的所有广告单元。 此时,SDK 会初始化您为所有广告单元配置的全部平台。) 以下示例展示了如何实现此功能:
AppLovinMAX.setInitializationAdUnitIds([ "«ad-unit-ID-1»", "«ad-unit-ID-2»" ]);AppLovinMAX.initialize(«SDK-key»).then((conf: Configuration) => { ... });
Waterfall Information API
Waterfall Information API 可向您展示广告的当前瀑布流 (已加载或加载失败的广告)。 API 会返回瀑布流中每则广告的广告加载状态、延迟、配置信息和聚合平台信息。 如果瀑布流中的广告加载失败,API 会提供错误信息。
React Native plugin 3.1.1. 及之后的版本支持该 API。
AdLoadState 值
值 | 解释 |
---|---|
0 | 未尝试加载广告 |
1 | 广告已加载 |
2 | 广告加载失败 |
示例
InterstitialAd.addAdLoadedEventListener((adInfo: AdInfo) => { console.log('Waterfall Name: ' + adInfo.waterfall.name + ' and Test Name: ' + adInfo.waterfall.testName); console.log('Waterfall latency was: ' + adInfo.waterfall.latencyMillis + ' milliseconds');
adInfo.waterfall.networkResponses.forEach((networkResponse: AdNetworkResponseInfo) => { console.log('Network name:' + networkResponse.mediatedNetwork.name + ' adapterClassName:'+ networkResponse.mediatedNetwork.adapterClassName + ' sdkVersion:' + networkResponse.mediatedNetwork.sdkVersion + ' adapterVersion:' + networkResponse.adapterVersion); console.log('...adLoadState:' + networkResponse.adLoadState); console.log('...latency:' + networkResponse.latencyMillis); });});
InterstitialAd.addAdLoadFailedEventListener((errorInfo: AdLoadFailedInfo) => { console.log('Waterfall Name: ' + errorInfo.waterfall.name + ' and Test Name: ' + errorInfo.waterfall.testName); console.log('Waterfall latency was: ' + errorInfo.waterfall.latencyMillis + ' milliseconds');
errorInfo.waterfall.networkResponses.forEach((networkResponse: AdNetworkResponseInfo) => { console.log('Network name:' + networkResponse.mediatedNetwork.name + ' adapterClassName:'+ networkResponse.mediatedNetwork.adapterClassName + ' sdkVersion:' + networkResponse.sdkVersion + ' adapterVersion:' + networkResponse.adapterVersion); console.log('...latency:' + networkResponse.latencyMillis); console.log('...error code:' + networkResponse.error.code + ' message:' + networkResponse.error.message); });});
输出
Waterfall Name: Default Waterfall and Test Name: ControlWaterfall latency was: 2793 millisecondsNetwork adapterClassName:com.applovin.mediation.adapters.UnityAdsMediationAdapter name:Unity Ads sdkVersion:4.2.1.0 adapterVersion:4.2.1...adLoadState:2...latency:25...credentials placement_id:BN_0_9...error code:-5212 message:WebView ErrorNetwork adapterClassName:com.applovin.mediation.adapters.LineMediationAdapter name:LINE Ads sdkVersion:2.4.20211029 adapterVersion:2021.10.29.2...adLoadState:2...latency:275...credentials placement_id:872167...error code:-5205 message:Ad Not ReadyNetwork adapterClassName:com.applovin.mediation.adapters.ByteDanceMediationAdapter name:Pangle sdkVersion:4.3.0.9 adapterVersion:4.3.0.9...adLoadState:1...latency:337...credentials placement_id:980034018