ज़रूरी शर्तें
कस्टम इवेंट का सेटअप पूरा करें.
नेटिव विज्ञापन का अनुरोध करना
जब वॉटरफ़ॉल मीडिएशन चेन में कस्टम इवेंट लाइन आइटम पर पहुंचा जाता है, तब loadNativeAd:adConfiguration:completionHandler:
तरीके को उस क्लास के नाम पर कॉल किया जाता है जिसे आपने कस्टम इवेंट बनाते समय दिया था. इस मामले में, वह तरीका SampleCustomEvent
में है, जो SampleCustomEventNative
में loadNativeAd:adConfiguration:completionHandler:
तरीके को कॉल करता है.
नेटिव विज्ञापन का अनुरोध करने के लिए, ऐसी क्लास बनाएं या उसमें बदलाव करें जो GADMediationAdapter
और loadNativeAd:adConfiguration:completionHandler:
को लागू करती हो. अगर GADMediationAdapter
को एक्सटेंड करने वाली कोई क्लास पहले से मौजूद है, तो उसमें loadNativeAd:adConfiguration:completionHandler:
लागू करें. इसके अलावा, GADMediationNativeAd
को लागू करने के लिए एक नई क्लास बनाएं.
कस्टम इवेंट के हमारे उदाहरण में,
SampleCustomEvent
GADMediationAdapter
इंटरफ़ेस को लागू करता है और फिर SampleCustomEventNative
को काम सौंपता है.
Swift
import GoogleMobileAds class SampleCustomEvent: NSObject, GADMediationAdapter { fileprivate var nativeAd: SampleCustomEventNativeAd? func loadNativeAd( for adConfiguration: GADMediationNativeAdConfiguration, completionHandler: @escaping GADMediationNativeAdLoadCompletionHandler ) { self.nativeAd = SampleCustomEventNativeAd() self.nativeAd?.loadNativeAd( for: adConfiguration, completionHandler: completionHandler) } }
Objective-C
#import "SampleCustomEvent.h" @implementation SampleCustomEvent SampleCustomEventNativeAd *sampleNativeAd; - (void)loadNativeAdForAdConfiguration: (GADMediationNativeAdConfiguration *)adConfiguration completionHandler: (GADMediationNativeAdLoadCompletionHandler) completionHandler { sampleNative = [[SampleCustomEventNativeAd alloc] init]; [sampleNative loadNativeAdForAdConfiguration:adConfiguration completionHandler:completionHandler]; }
SampleCustomEventNative` इन टास्क के लिए ज़िम्मेदार है:
नेटिव विज्ञापन लोड हो रहा है
GADMediationNativeAd
प्रोटोकॉल लागू करना.Google Mobile Ads SDK को विज्ञापन इवेंट कॉलबैक पाने और उनकी रिपोर्टिंग करना
AdMob यूज़र इंटरफ़ेस में तय किया गया वैकल्पिक पैरामीटर, विज्ञापन कॉन्फ़िगरेशन में शामिल होता है.
पैरामीटर को adConfiguration.credentials.settings[@"parameter"]
के ज़रिए ऐक्सेस किया जा सकता है. आम तौर पर, यह पैरामीटर एक विज्ञापन यूनिट आइडेंटिफ़ायर होता है. विज्ञापन ऑब्जेक्ट को इंस्टैंशिएट करते समय, विज्ञापन नेटवर्क कंपनी के SDK टूल को इसकी ज़रूरत होती है.
Swift
class SampleCustomEventNativeAd: NSObject, GADMediationNativeAd { /// The Sample Ad Network native ad. var nativeAd: SampleNativeAd? /// The ad event delegate to forward ad rendering events to the Google Mobile /// Ads SDK. var delegate: GADMediationNativeAdEventDelegate? /// Completion handler called after ad load var completionHandler: GADMediationNativeLoadCompletionHandler? func loadNativeAd( for adConfiguration: GADMediationNativeAdConfiguration, completionHandler: @escaping GADMediationNativeLoadCompletionHandler ) { let adLoader = SampleNativeAdLoader() let sampleRequest = SampleNativeAdRequest() // The Google Mobile Ads SDK requires the image assets to be downloaded // automatically unless the publisher specifies otherwise by using the // GADNativeAdImageAdLoaderOptions object's disableImageLoading property. If // your network doesn't have an option like this and instead only ever // returns URLs for images (rather than the images themselves), your adapter // should download image assets on behalf of the publisher. This should be // done after receiving the native ad object from your network's SDK, and // before calling the connector's adapter:didReceiveMediatedNativeAd: method. sampleRequest.shouldDownloadImages = true sampleRequest.preferredImageOrientation = NativeAdImageOrientation.any sampleRequest.shouldRequestMultipleImages = false let options = adConfiguration.options for loaderOptions: GADAdLoaderOptions in options { if let imageOptions = loaderOptions as? GADNativeAdImageAdLoaderOptions { sampleRequest.shouldRequestMultipleImages = imageOptions.shouldRequestMultipleImages // If the GADNativeAdImageAdLoaderOptions' disableImageLoading property is // YES, the adapter should send just the URLs for the images. sampleRequest.shouldDownloadImages = !imageOptions.disableImageLoading } else if let mediaOptions = loaderOptions as? GADNativeAdMediaAdLoaderOptions { switch mediaOptions.mediaAspectRatio { case GADMediaAspectRatio.landscape: sampleRequest.preferredImageOrientation = NativeAdImageOrientation.landscape case GADMediaAspectRatio.portrait: sampleRequest.preferredImageOrientation = NativeAdImageOrientation.portrait default: sampleRequest.preferredImageOrientation = NativeAdImageOrientation.any } } } // This custom event uses the server parameter to carry an ad unit ID, which // is the most common use case. adLoader.delegate = self adLoader.adUnitID = adConfiguration.credentials.settings["parameter"] as? String self.completionHandler = completionHandler adLoader.fetchAd(sampleRequest) } }
Objective-C
#import "SampleCustomEventNativeAd.h" @interface SampleCustomEventNativeAd () <SampleNativeAdDelegate, GADMediationNativeAd> { /// The sample native ad. SampleNativeAd *_nativeAd; /// The completion handler to call when the ad loading succeeds or fails. GADMediationNativeLoadCompletionHandler _loadCompletionHandler; /// The ad event delegate to forward ad rendering events to the Google Mobile /// Ads SDK. id<GADMediationNativeAdEventDelegate> _adEventDelegate; } @end - (void)loadNativeAdForAdConfiguration: (GADMediationNativeAdConfiguration *)adConfiguration completionHandler:(GADMediationNativeLoadCompletionHandler) completionHandler { __block atomic_flag completionHandlerCalled = ATOMIC_FLAG_INIT; __block GADMediationNativeLoadCompletionHandler originalCompletionHandler = [completionHandler copy]; _loadCompletionHandler = ^id<GADMediationNativeAdEventDelegate>( _Nullable id<GADMediationNativeAd> ad, NSError *_Nullable error) { // Only allow completion handler to be called once. if (atomic_flag_test_and_set(&completionHandlerCalled)) { return nil; } id<GADMediationNativeAdEventDelegate> delegate = nil; if (originalCompletionHandler) { // Call original handler and hold on to its return value. delegate = originalCompletionHandler(ad, error); } // Release reference to handler. Objects retained by the handler will also // be released. originalCompletionHandler = nil; return delegate; }; SampleNativeAdLoader *adLoader = [[SampleNativeAdLoader alloc] init]; SampleNativeAdRequest *sampleRequest = [[SampleNativeAdRequest alloc] init]; // The Google Mobile Ads SDK requires the image assets to be downloaded // automatically unless the publisher specifies otherwise by using the // GADNativeAdImageAdLoaderOptions object's disableImageLoading property. If // your network doesn't have an option like this and instead only ever returns // URLs for images (rather than the images themselves), your adapter should // download image assets on behalf of the publisher. This should be done after // receiving the native ad object from your network's SDK, and before calling // the connector's adapter:didReceiveMediatedNativeAd: method. sampleRequest.shouldDownloadImages = YES; sampleRequest.preferredImageOrientation = NativeAdImageOrientationAny; sampleRequest.shouldRequestMultipleImages = NO; sampleRequest.testMode = adConfiguration.isTestRequest; for (GADAdLoaderOptions *loaderOptions in adConfiguration.options) { if ([loaderOptions isKindOfClass:[GADNativeAdImageAdLoaderOptions class]]) { GADNativeAdImageAdLoaderOptions *imageOptions = (GADNativeAdImageAdLoaderOptions *)loaderOptions; sampleRequest.shouldRequestMultipleImages = imageOptions.shouldRequestMultipleImages; // If the GADNativeAdImageAdLoaderOptions' disableImageLoading property is // YES, the adapter should send just the URLs for the images. sampleRequest.shouldDownloadImages = !imageOptions.disableImageLoading; } else if ([loaderOptions isKindOfClass:[GADNativeAdMediaAdLoaderOptions class]]) { GADNativeAdMediaAdLoaderOptions *mediaOptions = (GADNativeAdMediaAdLoaderOptions *)loaderOptions; switch (mediaOptions.mediaAspectRatio) { case GADMediaAspectRatioLandscape: sampleRequest.preferredImageOrientation = NativeAdImageOrientationLandscape; break; case GADMediaAspectRatioPortrait: sampleRequest.preferredImageOrientation = NativeAdImageOrientationPortrait; break; default: sampleRequest.preferredImageOrientation = NativeAdImageOrientationAny; break; } } else if ([loaderOptions isKindOfClass:[GADNativeAdViewAdOptions class]]) { _nativeAdViewAdOptions = (GADNativeAdViewAdOptions *)loaderOptions; } } // This custom event uses the server parameter to carry an ad unit ID, which // is the most common use case. NSString *adUnit = adConfiguration.credentials.settings[@"parameter"]; adLoader.adUnitID = adUnit; adLoader.delegate = self; [adLoader fetchAd:sampleRequest]; }
विज्ञापन फ़ेच हो जाए या कोई गड़बड़ी आ जाए, तो आपको GADMediationNativeAdLoadCompletionHandler
को कॉल करना होगा. अगर फ़ंक्शन सही तरीके से काम करता है, तो उस क्लास को पास करें जो गड़बड़ी वाले पैरामीटर के लिए, nil
वैल्यू के साथ GADMediationNativeAd
लागू करता है. अगर फ़ंक्शन काम नहीं करता है, तो उस गड़बड़ी को पास करें जो आपको मिली है.
आम तौर पर, ये तरीके तीसरे पक्ष के उस SDK टूल के कॉलबैक में लागू किए जाते हैं जिसे आपका अडैप्टर लागू करता है. उदाहरण के लिए, सैंपल SDK टूल में, काम के कॉलबैक वाला SampleNativeAdDelegate
मौजूद है:
Swift
func adLoader( _ adLoader: SampleNativeAdLoader, didReceive nativeAd: SampleNativeAd ) { extraAssets = [ SampleCustomEventConstantsSwift.awesomenessKey: nativeAd.degreeOfAwesomeness ?? "" ] if let image = nativeAd.image { images = [GADNativeAdImage(image: image)] } else { let imageUrl = URL(fileURLWithPath: nativeAd.imageURL) images = [GADNativeAdImage(url: imageUrl, scale: nativeAd.imageScale)] } if let mappedIcon = nativeAd.icon { icon = GADNativeAdImage(image: mappedIcon) } else { let iconURL = URL(fileURLWithPath: nativeAd.iconURL) icon = GADNativeAdImage(url: iconURL, scale: nativeAd.iconScale) } adChoicesView = SampleAdInfoView() self.nativeAd = nativeAd if let handler = completionHandler { delegate = handler(self, nil) } } func adLoader( _ adLoader: SampleNativeAdLoader, didFailToLoadAdWith errorCode: SampleErrorCode ) { let error = SampleCustomEventUtilsSwift.SampleCustomEventErrorWithCodeAndDescription( code: SampleCustomEventErrorCodeSwift .SampleCustomEventErrorAdLoadFailureCallback, description: "Sample SDK returned an ad load failure callback with error code: \(errorCode)" ) if let handler = completionHandler { delegate = handler(nil, error) } }
Objective-C
- (void)adLoader:(SampleNativeAdLoader *)adLoader didReceiveNativeAd:(SampleNativeAd *)nativeAd { if (nativeAd.image) { _images = @[ [[GADNativeAdImage alloc] initWithImage:nativeAd.image] ]; } else { NSURL *imageURL = [[NSURL alloc] initFileURLWithPath:nativeAd.imageURL]; _images = @[ [[GADNativeAdImage alloc] initWithURL:imageURL scale:nativeAd.imageScale] ]; } if (nativeAd.icon) { _icon = [[GADNativeAdImage alloc] initWithImage:nativeAd.icon]; } else { NSURL *iconURL = [[NSURL alloc] initFileURLWithPath:nativeAd.iconURL]; _icon = [[GADNativeAdImage alloc] initWithURL:iconURL scale:nativeAd.iconScale]; } // The sample SDK provides an AdChoices view (SampleAdInfoView). If your SDK // provides image and click through URLs for its AdChoices icon instead of an // actual UIView, the adapter is responsible for downloading the icon image // and creating the AdChoices icon view. _adChoicesView = [[SampleAdInfoView alloc] init]; _nativeAd = nativeAd; _adEventDelegate = _loadCompletionHandler(self, nil); } - (void)adLoader:(SampleNativeAdLoader *)adLoader didFailToLoadAdWithErrorCode:(SampleErrorCode)errorCode { NSError *error = SampleCustomEventErrorWithCodeAndDescription( SampleCustomEventErrorAdLoadFailureCallback, [NSString stringWithFormat:@"Sample SDK returned an ad load failure " @"callback with error code: %@", errorCode]); _adEventDelegate = _loadCompletionHandler(nil, error); }
नेटिव विज्ञापनों को मैप करना
नेटिव विज्ञापनों के लिए, अलग-अलग SDK टूल के अपने यूनीक फ़ॉर्मैट होते हैं. उदाहरण के लिए, एक फ़ंक्शन ऐसे ऑब्जेक्ट दिखा सकता है जिनमें "टाइटल" फ़ील्ड हो, जबकि दूसरे में "हेडलाइन" हो. इसके अलावा, इंप्रेशन ट्रैक करने और क्लिक प्रोसेस करने के लिए अलग-अलग तरीके इस्तेमाल किए जा सकते हैं.
इन समस्याओं को हल करने के लिए, जब किसी कस्टम इवेंट को मीडिएट किए गए SDK टूल से नेटिव विज्ञापन ऑब्जेक्ट मिलता है, तो उसे ऐसी क्लास का इस्तेमाल करना चाहिए जो SampleCustomEventNativeAd
की तरह GADMediationNativeAd
को लागू करती है. इससे, मीडिएट किए गए SDK टूल के नेटिव विज्ञापन ऑब्जेक्ट को "मैप" किया जा सकता है, ताकि वह Google Mobile Ads SDK टूल के इंटरफ़ेस से मेल खा सके.
अब हम SampleCustomEventNativeAd
को लागू करने के बारे में ज़्यादा जानकारी देंगे.
अपनी मैपिंग सेव करना
GADMediationNativeAd
को कुछ ऐसी प्रॉपर्टी लागू करनी होंगी जिन्हें अन्य SDK टूल की प्रॉपर्टी से मैप किया गया है:
Swift
var nativeAd: SampleNativeAd? var headline: String? { return nativeAd?.headline } var images: [GADNativeAdImage]? var body: String? { return nativeAd?.body } var icon: GADNativeAdImage? var callToAction: String? { return nativeAd?.callToAction } var starRating: NSDecimalNumber? { return nativeAd?.starRating } var store: String? { return nativeAd?.store } var price: String? { return nativeAd?.price } var advertiser: String? { return nativeAd?.advertiser } var extraAssets: [String: Any]? { return [ SampleCustomEventConstantsSwift.awesomenessKey: nativeAd?.degreeOfAwesomeness ?? "" ] } var adChoicesView: UIView? var mediaView: UIView? { return nativeAd?.mediaView }
Objective-C
/// Used to store the ad's images. In order to implement the /// GADMediationNativeAd protocol, we use this class to return the images /// property. NSArray<GADNativeAdImage *> *_images; /// Used to store the ad's icon. In order to implement the GADMediationNativeAd /// protocol, we use this class to return the icon property. GADNativeAdImage *_icon; /// Used to store the ad's ad choices view. In order to implement the /// GADMediationNativeAd protocol, we use this class to return the adChoicesView /// property. UIView *_adChoicesView; - (nullable NSString *)headline { return _nativeAd.headline; } - (nullable NSArray<GADNativeAdImage *> *)images { return _images; } - (nullable NSString *)body { return _nativeAd.body; } - (nullable GADNativeAdImage *)icon { return _icon; } - (nullable NSString *)callToAction { return _nativeAd.callToAction; } - (nullable NSDecimalNumber *)starRating { return _nativeAd.starRating; } - (nullable NSString *)store { return _nativeAd.store; } - (nullable NSString *)price { return _nativeAd.price; } - (nullable NSString *)advertiser { return _nativeAd.advertiser; } - (nullable NSDictionary<NSString *, id> *)extraAssets { return @{SampleCustomEventExtraKeyAwesomeness : _nativeAd.degreeOfAwesomeness}; } - (nullable UIView *)adChoicesView { return _adChoicesView; } - (nullable UIView *)mediaView { return _nativeAd.mediaView; } - (BOOL)hasVideoContent { return self.mediaView != nil; }
मीडिएट किए गए कुछ नेटवर्क, Google Mobile Ads SDK में बताई गई एसेट के अलावा अन्य एसेट भी उपलब्ध करा सकते हैं. GADMediationNativeAd
प्रोटोकॉल में extraAssets
नाम का एक तरीका शामिल होता है. Google Mobile Ads SDK इसका इस्तेमाल करके, आपके मैपर से इन "अतिरिक्त" ऐसेट में से किसी को भी फिर से हासिल करता है.
इमेज ऐसेट को मैप करें
इमेज ऐसेट को मैप करना, NSString
या double
जैसे आसान डेटा टाइप को मैप करने से ज़्यादा मुश्किल है. इमेज अपने-आप डाउनलोड हो सकती हैं या यूआरएल वैल्यू के तौर पर दिख सकती हैं. इनकी पिक्सल डेंसिटी भी अलग-अलग हो सकती है.
इन जानकारी को मैनेज करने में आपकी मदद करने के लिए, Google Mobile Ads SDK में
GADNativeAdImage
क्लास उपलब्ध है. इमेज ऐसेट की जानकारी (चाहे वह असल UIImage
ऑब्जेक्ट हो या सिर्फ़ NSURL
वैल्यू), इस क्लास का इस्तेमाल करके Google Mobile Ads SDK को वापस भेजी जानी चाहिए.
यहां बताया गया है कि मैपर क्लास, आइकॉन इमेज को होल्ड करने के लिए GADNativeAdImage
बनाने का तरीका कैसे मैनेज करती है:
Swift
if let image = nativeAd.image { images = [GADNativeAdImage(image: image)] } else { let imageUrl = URL(fileURLWithPath: nativeAd.imageURL) images = [GADNativeAdImage(url: imageUrl, scale: nativeAd.imageScale)] }
Objective-C
if (nativeAd.image) { _images = @[ [[GADNativeAdImage alloc] initWithImage:nativeAd.image] ]; } else { NSURL *imageURL = [[NSURL alloc] initFileURLWithPath:nativeAd.imageURL]; _images = @[ [[GADNativeAdImage alloc] initWithURL:imageURL scale:nativeAd.imageScale] ]; }
इंप्रेशन और क्लिक इवेंट
Google Mobile Ads SDK और मीडिएट किए गए SDK टूल, दोनों को यह पता होना चाहिए कि कोई इंप्रेशन या क्लिक कब होता है. हालांकि, इन इवेंट को सिर्फ़ एक SDK टूल को ट्रैक करना होता है. कस्टम इवेंट के लिए, दो अलग-अलग तरीके इस्तेमाल किए जा सकते हैं. यह इस बात पर निर्भर करता है कि मीडिएटेड SDK टूल, इंप्रेशन और क्लिक को अपने-आप ट्रैक करता है या नहीं.
Google Mobile Ads SDK की मदद से क्लिक और इंप्रेशन ट्रैक करना
अगर मीडिएटेड SDK टूल, अपने इंप्रेशन और क्लिक ट्रैकिंग को खुद नहीं करता है, लेकिन क्लिक और इंप्रेशन रिकॉर्ड करने के तरीके उपलब्ध कराता है, तो Google Mobile Ads SDK इन इवेंट को ट्रैक कर सकता है और अडैप्टर को सूचना दे सकता है. GADMediationNativeAd
प्रोटोकॉल में दो तरीके शामिल हैं: didRecordImpression:
और
didRecordClickOnAssetWithName:view:viewController:
. कस्टम इवेंट, मीडिएट किए गए नेटिव विज्ञापन ऑब्जेक्ट पर उसी तरीके को कॉल करने के लिए लागू किए जा सकते हैं:
Swift
func didRecordImpression() { nativeAd?.recordImpression() } func didRecordClickOnAsset( withName assetName: GADUnifiedNativeAssetIdentifier, view: UIView, wController: UIViewController ) { nativeAd?.handleClick(on: view) }
Objective-C
- (void)didRecordImpression { if (self.nativeAd) { [self.nativeAd recordImpression]; } } - (void)didRecordClickOnAssetWithName:(GADUnifiedNativeAssetIdentifier)assetName view:(UIView *)view viewController:(UIViewController *)viewController { if (self.nativeAd) { [self.nativeAd handleClickOnView:view]; } }
GADMediationNativeAd
प्रोटोकॉल को लागू करने वाली क्लास में, सैंपल एसडीके के नेटिव विज्ञापन ऑब्जेक्ट का रेफ़रंस होता है. इसलिए, यह क्लिक या इंप्रेशन की रिपोर्ट करने के लिए, उस ऑब्जेक्ट पर सही मेथड को कॉल कर सकती है. ध्यान दें कि didRecordClickOnAssetWithName:view:viewController:
वाला तरीका एक ही पैरामीटर लेता है: क्लिक पाने वाली नेटिव विज्ञापन एसेट से जुड़ा View
ऑब्जेक्ट.
मीडिएटेड एसडीके टूल की मदद से क्लिक और इंप्रेशन ट्रैक करना
कुछ मीडिएटेड SDK, क्लिक और इंप्रेशन को खुद ट्रैक करना पसंद कर सकते हैं. ऐसे में, आपको handlesUserClicks
और
handlesUserImpressions
तरीके लागू करने चाहिए, जैसा कि नीचे दिए गए स्निपेट में दिखाया गया है. YES
दिखाकर, यह बताया जाता है कि कस्टम इवेंट इन इवेंट को ट्रैक करने की ज़िम्मेदारी लेता है. साथ ही, इन इवेंट के होने पर Google Mobile Ads SDK को सूचना देगा.
क्लिक और इंप्रेशन ट्रैकिंग को बदलने वाले कस्टम इवेंट, didRenderInView:
मैसेज का इस्तेमाल करके नेटिव विज्ञापन के व्यू को मीडिएट किए गए SDK टूल के नेटिव विज्ञापन ऑब्जेक्ट को पास कर सकते हैं. इससे मीडिएट किए गए SDK टूल को असल ट्रैकिंग करने की अनुमति मिलती है. हमारे कस्टम इवेंट के उदाहरण वाले प्रोजेक्ट (जिससे इस गाइड के कोड स्निपेट लिए गए हैं) का सैंपल SDK टूल, इस तरीके का इस्तेमाल नहीं करता. हालांकि, अगर ऐसा होता, तो कस्टम इवेंट कोड, setNativeAdView:view:
तरीके को कॉल करेगा, जैसा कि नीचे दिए गए स्निपेट में दिखाया गया है:
Swift
func handlesUserClicks() -> Bool { return true } func handlesUserImpressions() -> Bool { return true } func didRender( in view: UIView, clickableAssetViews: [GADNativeAssetIdentifier: UIView], nonclickableAssetViews: [GADNativeAssetIdentifier: UIView], viewController: UIViewController ) { // This method is called when the native ad view is rendered. Here you would pass the UIView // back to the mediated network's SDK. self.nativeAd?.setNativeAdView(view) }
Objective-C
- (BOOL)handlesUserClicks { return YES; } - (BOOL)handlesUserImpressions { return YES; } - (void)didRenderInView:(UIView *)view clickableAssetViews:(NSDictionary<GADNativeAssetIdentifier, UIView *> *) clickableAssetViews nonclickableAssetViews:(NSDictionary<GADNativeAssetIdentifier, UIView *> *) nonclickableAssetViews viewController:(UIViewController *)viewController { // This method is called when the native ad view is rendered. Here you would // pass the UIView back to the mediated network's SDK. Playing video using // SampleNativeAd's playVideo method [_nativeAd setNativeAdView:view]; }
Google Mobile Ads SDK पर मीडिएशन इवेंट फ़ॉरवर्ड करना
लोड किए गए विज्ञापन के साथ GADMediationNativeLoadCompletionHandler
को कॉल करने के बाद, GADMediationNativeAdEventDelegate
delegate ऑब्जेक्ट का इस्तेमाल, अडैप्टर के तीसरे पक्ष के SDK टूल से Google Mobile Ads SDK टूल पर प्रज़ेंटेशन इवेंट फ़ॉरवर्ड करने के लिए किया जा सकता है.
यह ज़रूरी है कि आपका कस्टम इवेंट इनमें से ज़्यादा से ज़्यादा कॉलबैक को फ़ॉरवर्ड करे, ताकि आपके ऐप्लिकेशन को Google Mobile Ads SDK से मिलते-जुलते इवेंट मिल सकें. कॉलबैक का इस्तेमाल करने का उदाहरण यहां दिया गया है:
इससे नेटिव विज्ञापनों के लिए कस्टम इवेंट लागू करने की प्रक्रिया पूरी हो जाती है. पूरा उदाहरण, GitHub पर उपलब्ध है.