0

我已将 AppLovin 集成到 AdMOb 中介中。并遵循 AppLovin 文档中提到的所有步骤。

当我运行应用程序以显示带有以下代码的 AppLovin 视频时,

GADInterstitial* interstitialVideo = [[GADInterstitial alloc] initWithAdUnitID:@"ca-app-pub-xxxxxxxxxxxx"];
interstitialVideo.delegate = self;
GADRequest *request = [GADRequest request];
// Requests test ads on test devices.
request.testDevices = @[ testDeview ];
[interstitialVideo loadRequest:request];

if ([interstitialVideo isReady]) {
    [interstitialVideo presentFromRootViewController:self];
}

我越来越低于例外,

[2604:1732410] -[GADMAdapterAppLovinRewardBasedVideoAd initWithGADMAdNetworkConnector:]: unrecognized selector sent to instance 0x1283d7570
2016-04-20 16:14:32.100 [2604:1732410] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[GADMAdapterAppLovinRewardBasedVideoAd initWithGADMAdNetworkConnector:]: unrecognized selector sent to instance 0x1283d7570'
** First throw call stack:

我尝试将 -ObjC -all_load 添加到其他链接器标志,但我仍然得到相同的异常。

如果有人知道这里有什么问题,请告诉我。

4

2 回答 2

1

最后我解决了这个问题。

我需要使用下面的代码而不是上面的代码(如问题所述)

//初始化

[GADRewardBasedVideoAd sharedInstance].delegate = self;
[[GADRewardBasedVideoAd sharedInstance] loadRequest:[GADRequest request]
                                   withAdUnitID:@"ca-app-pub-xxxxxxxxxxxx"];

//显示添加

if ([[GADRewardBasedVideoAd sharedInstance] isReady]) {
  [[GADRewardBasedVideoAd sharedInstance] presentFromRootViewController:self];
}

经过上述更改后,我开始获取 AppLovin 视频。

有关更多详细信息,请查看链接https://developers.google.com/admob/ios/rewarded-video#request_rewarded_video

于 2016-04-21T08:50:39.393 回答
0

您能否确认已将我们最新的 AdMob 适配器添加到您的项目中?您似乎正在尝试使用插页式广告,但收到了奖励视频错误。您是否错误地在 AdMob 控制面板中配置了激励视频广告单元而不是插页式广告,反之亦然?

请随时通过 support@applovin.com 与我们联系以获得进一步的帮助。

于 2016-04-20T23:10:13.070 回答