Flurry

  1. Create the package com.intowow.sdk under your app's project.

  2. Add CustomEventUtil to com.intowow.sdk.

  3. Add corresponding custom event class (as below) to your project in iOS or com.intowow.sdk in android:

    • For Native

      Android Custom Event Class Name

      iOS Custom Event Class Name

      FlurryCustomEventNative

      CEFlurryNativeCustomEvent.h/.m

    • For Banner

      Android Custom Event Class Name

      iOS Custom Event Class Name

      FlurryCustomEventCard

      CEFlurryBannerCustomEvent.h/.m

    • For Interstitial

      Android Custom Event Class Name

      iOS Custom Event Class Name

      FlurryCustomEventInterstitial

      CEFlurryInterstitialCustomEvent.h/.m

  4. Please provide Flurry Ad Space to Intowow Account manager to enable Flurry mediation.

  5. Verified Flurry SDK Version iOS: 8.6.1 Android: 11.3.0

  6. Ad Format Mapping

CrystalExpress Ad Format

Flurry Ad Format

Native

Native Ads

Card

Banner

Interstitial

Interstitial

Note:

  • Flurry do not support video progress, mute and unmute information

  • To follow Flurry guideline. If you are using the native format, be sure to attach sponsored marker and Advertiser Name.

iOS:

if ([customEventExtra[@"provider"] isEqualToString:@"FLURRY"]) {
        UIImageView *iconImageView = [self.nativeAd getCustomEventAsset:@"secHqBrandingLogo"];
        if (iconImageView) {
            // TODO: Attach sponsored marker into your ad view.
        }

        NSString *source = [self.nativeAd getCustomEventAsset:@"source"];
        if (source) {
            // TODO: Attach advertiser name to your ad view.
        }
}

Android:

if (provider.equals("FLURRY")) {
    Object advertiserName = mNativeAd.getCustomEventAsset("source");
    if (advertiserName instanceof String) {
       // TODO: Attach advertiser name to your ad view.
    }

    Object sponsoredMarker = mNativeAd.getCustomEventAsset("secHqBrandingLogo");
    if (sponsoredMarker instanceof View) {
       // TODO: Attach sponsored marker into your ad view.
}

Last updated