Ich habe AppLovin in AdMob Mediation integriert. Und folgte allen Schritten, die in AppLovin docs erwähnt sind.AppLovin init mit AdMob (V7.7.1) Mediation Ausnahme in IOS 9.3 App
Wenn ich die Anwendung ausführen Videos mit folgendem Code zu erhalten 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];
}
ich unten Ausnahme bin immer,
[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:
Ich versuchte -ObjC -all_load andere Linker-Flags hinzugefügt, aber immer noch Ich bekomme dieselbe Ausnahme.
Bitte lassen Sie mich wissen, wenn jemand weiß, was hier falsch ist.