Integrate Moloco with mediation

This guide shows you how to use the Google Mobile Ads SDK to load and display ads from Moloco using AdMob Mediation, covering bidding integrations. It covers how to add Moloco to an ad unit's mediation configuration, and how to integrate the Moloco SDK and adapter into an iOS app.

Supported integrations and ad formats

The mediation adapter for Moloco has the following capabilities:

Integration
Bidding
Waterfall
Formats
App Open
Banner
Interstitial
Rewarded
Rewarded Interstitial
Native

Requirements

  • iOS deployment target of 12.0 or higher

  • Moloco adapter 3.7.2.0 or higher

Step 1: Set up configurations in Moloco UI

Log in to the Moloco Publisher Portal.

Navigate to Overview > Apps tab, then click the Add App button to create a new app.

Select the OS and Privacy Settings for your app, fill out the rest of the form, and then click Create.

Once your app is created, select it from the Apps tab to view the details and take note of the App Key.

Navigate to the Overview > Ad Units tab, select the app from the drop-down menu, and then click New Ad Unit.

Select In-app bidding as the Auction method and fill out the rest of the form. Then, click Create.

Navigate to your newly created ad unit under the Ad Units tab to view its details. Take note of the Ad Unit ID.

Step 2: Set up Moloco demand in AdMob UI

Configure mediation settings for your ad unit

You need to add Moloco Ads SDK to the mediation configuration for your ad unit.

First, sign in to your AdMob account. Next, navigate to the Mediation tab. If you have an existing mediation group you'd like to modify, click the name of that mediation group to edit it, and skip ahead to Add Moloco Ads SDK as an ad source.

To create a new mediation group, select Create Mediation Group.

Enter your ad format and platform, then click Continue.

Give your mediation group a name, and select locations to target. Next, set the mediation group status to Enabled, and then click Add Ad Units.

Associate this mediation group with one or more of your existing AdMob ad units. Then click Done.

You should now see the ad units card populated with the ad units you selected:

Add Moloco Ads SDK as an ad source

Under the Bidding card in the Ad Sources section, select Add ad source. Then select Moloco Ads SDK .

Click How to sign a partnership agreement and set up a bidding partnership with Moloco Ads SDK.



Click Acknowledge & agree, then click Continue.



If you already have a mapping for Moloco Ads SDK, you can select it. Otherwise, click Add mapping.



Next, enter the App Key and Ad Unit ID obtained in the previous section. Then click Done.

Add Moloco Ads to European and US state regulations ad partners list

Follow the steps in European regulations settings and US state regulations settings to add Moloco Ads to the European and US state regulations ad partners list in the AdMob UI.

Step 3: Import the Moloco SDK and adapter

  • Add the following line to your project's Podfile:

    pod 'GoogleMobileAdsMediationMoloco'
    
  • From the command line run:

    pod install --repo-update

Step 4: Implement privacy settings on Moloco SDK

To comply with Google EU User Consent Policy, you must make certain disclosures to your users in the European Economic Area (EEA), the UK, and Switzerland, and obtain their consent for the use of cookies or other local storage where legally required, and for the collection, sharing, and use of personal data for ads personalization. This policy reflects the requirements of the EU ePrivacy Directive and the General Data Protection Regulation (GDPR). You are responsible for verifying consent is propagated to each ad source in your mediation chain. Google is unable to pass the user's consent choice to such networks automatically.

The Moloco SDK includes the hasUserConsent flag to pass consent information to the Moloco SDK.

The following sample code shows how to pass consent information to the Moloco SDK. If you choose to set these flags, it is recommended that you do so prior to requesting ads through the Google Mobile Ads SDK.

Swift

import MolocoSDK
// ...

MolocoPrivacySettings.hasUserConsent = true;

Objective-C

#import <MolocoSDK/MolocoSDK-Swift.h>
// ...

[MolocoPrivacySettings setHasUserConsent:YES];

See Moloco's Privacy documentation for more information.

US states privacy laws

US states privacy laws require giving users the right to opt out of the "sale" of their "personal information" (as the law defines those terms), with the opt-out offered through a prominent "Do Not Sell My Personal Information" link on the "selling" party's homepage. The US states privacy laws compliance guide offers the ability to enable restricted data processing for Google ad serving, but Google is unable to apply this setting to each ad network in your mediation chain. Therefore, you must identify each ad network in your mediation chain that may participate in the sale of personal information and follow guidance from each of those networks to ensure compliance.

The Moloco SDK includes the isDoNotSell flag to pass consent information to the Moloco SDK.

The following sample code shows how to pass consent information to the Moloco SDK. If you choose to set these flags, it is recommended that you do so prior to requesting ads through the Google Mobile Ads SDK.

Swift

import MolocoSDK
// ...

MolocoPrivacySettings.isDoNotSell = true;

Objective-C

#import <MolocoSDK/MolocoSDK-Swift.h>
// ...

[MolocoPrivacySettings setIsDoNotSell:YES];

See Moloco's Privacy documentation for more information.

Step 5: Test your implementation

Enable test ads

Make sure you register your test device for AdMob.

Verify test ads

To verify that you are receiving test ads from Moloco Ads SDK, enable single ad source testing in ad inspector using the Moloco (Bidding) ad source(s).

Error codes

If the adapter fails to receive an ad from Moloco, you can check the underlying error from the ad response using GADResponseInfo.adNetworkInfoArray under the following classes:

MolocoSDK.MolocoError
GADMediationAdapterMoloco

Here are the codes and accompanying messages thrown by the Moloco adapter when an ad fails to load:

Error code Domain Reason
101 com.google.ads.mediation.moloco Moloco SDK does not support serving ads on iOS 12 and below.
102 com.google.ads.mediation.moloco Missing or invalid Moloco App Key.
103 com.google.ads.mediation.moloco Missing or invalid Moloco Ad unit ID.
104 com.google.ads.mediation.moloco Ad is not ready to be shown.
105 com.google.ads.mediation.moloco Ad failed to show.
106 com.google.ads.mediation.moloco Rendering data not available to render the ad.
-1 to 5000 Sent by Moloco SDK Moloco SDK returned an error. See Moloco's documentation for more details.

Rewarded Server-side verification

If you Validate server-side verification (SSV) callbacks, the ad source identifier for Moloco is 8267622065755668722.

Moloco iOS Mediation Adapter Changelog

Version 3.11.0.0

  • Verified compatibility with Moloco SDK version 3.11.0.

Built and tested with:

  • Google Mobile Ads SDK version 12.6.0.
  • Moloco SDK version 3.11.0.

Version 3.10.1.0

  • Verified compatibility with Moloco SDK version 3.10.1.

Built and tested with:

  • Google Mobile Ads SDK version 12.6.0.
  • Moloco SDK version 3.10.1.

Version 3.10.0.0

  • Verified compatibility with Moloco SDK version 3.10.0.

Built and tested with:

  • Google Mobile Ads SDK version 12.5.0.
  • Moloco SDK version 3.10.0.

Version 3.9.1.0

  • Added watermark support for bidding ad formats.
  • Fixed an issue when loading MREC banner ads.
  • Verified compatibility with Moloco SDK version 3.9.1.

Built and tested with:

  • Google Mobile Ads SDK version 12.3.0.
  • Moloco SDK version 3.9.1.

Version 3.9.0.0

  • Mediation platform name is now set when initializing the Moloco SDK.
  • Verified compatibility with Moloco SDK version 3.9.0.

Built and tested with:

  • Google Mobile Ads SDK version 12.3.0.
  • Moloco SDK version 3.9.0.

Version 3.8.0.0

  • Enabled -fobjc-arc and -fstack-protector-all flags.
  • Fixed an issue with obtaining the star rating for native ads.
  • Verified compatibility with Moloco SDK version 3.8.0.

Built and tested with:

  • Google Mobile Ads SDK version 12.2.0.
  • Moloco SDK version 3.8.0.

Version 3.7.2.0

  • Verified compatibility with Moloco SDK version 3.7.2.
  • Added bidding support for native ad format.

Built and tested with:

  • Google Mobile Ads SDK version 12.1.0.
  • Moloco SDK version 3.7.2.

Version 3.7.1.0

  • Verified compatibility with Moloco SDK version 3.7.1.

Built and tested with:

  • Google Mobile Ads SDK version 12.1.0.
  • Moloco SDK version 3.7.1.

Version 3.7.0.0

  • Verified compatibility with Moloco SDK version 3.7.0.

Built and tested with:

  • Google Mobile Ads SDK version 12.0.0.
  • Moloco SDK version 3.7.0.

Version 3.6.0.1

  • Updated the adapter to retrieve the Moloco SDK version from the main thread.
  • Now requires Google Mobile Ads SDK version 12.0.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 12.0.0.
  • Moloco SDK version 3.6.0.

Version 3.6.0.0

  • Verified compatibility with Moloco SDK version 3.6.0.

Built and tested with:

  • Google Mobile Ads SDK version 11.13.0.
  • Moloco SDK version 3.6.0.

Version 3.5.0.0

  • Initial release.
  • Added bidding support for banner (includes MREC), interstitial and rewarded ad formats.
  • Verified compatibility with Moloco SDK version 3.5.0.

Built and tested with:

  • Google Mobile Ads SDK version 11.13.0.
  • Moloco SDK version 3.5.0.