将 Meta Audience Network 与出价功能集成

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

Supported integrations and ad formats

The AdMob mediation adapter for Meta Audience Network has the following capabilities:

Integration
Bidding
Waterfall  1
Formats
Banner
Interstitial
Rewarded
Rewarded Interstitial
Native

1 Meta Audience Network became bidding only in 2021.

Requirements

  • Android API level 21 or higher

Step 1: Set up configurations in Meta Audience Network UI

注册并登录商家管理工具初始页

依次点击开始使用创建新帐号

在必填字段中填写您的商家详情,然后点击下一步

创建媒体资源

填写所需信息后,系统会提示您为应用创建媒体资源。为应用输入所需的媒体资源名称,然后点击下一步

接下来,请选择要用于创收的平台。

添加应用详细信息,然后点击 Next

点击添加新的付款帐号,设置您的付款帐号。系统会将您重定向到一个新页面,以便您输入付款信息。填写必要的详细信息,然后点击下一步

选择 Google AdMob 作为中介平台,然后点击创建展示位置

选择一种格式,填写表单,然后点击创建

为所有横幅尺寸选择横幅,包括 300x250。Meta Audience Network 不支持中矩形展示广告格式,但支持高度为 50、90 或 250 的灵活宽度横幅广告(当使用横幅广告展示广告格式时)。

记下展示位置 ID

点击完成

开启测试模式

有关如何启用 Meta Audience Network 测试广告的详细说明,请参阅测试 Audience Network 实现指南

Step 2: Set up Meta Audience Network demand in AdMob UI

为广告单元配置中介设置

您需要将 Meta Audience Network 添加到广告单元的中介配置。

首先,登录您的 AdMob 帐号。接下来,前往中介标签页。如果您想修改现有的中介组,请点击该中介组的名称进行修改,然后直接跳转到添加 Meta Audience Network 作为广告来源

要创建新的中介组,请选择创建中介组

输入您的广告格式和平台,然后点击继续

为中介组命名,然后选择要定位到的地理位置。接下来,将中介组的状态设置为已启用,然后点击添加广告单元

将此中介组与您的一个或多个现有AdMob 广告单元相关联。接着,点击完成

现在,您应该会看到广告单元卡片内填充了您选择的广告单元:

添加为广告来源 Meta Audience Network

广告来源部分的出价卡片下,选择添加广告来源。然后选择 Meta Audience Network

点击如何签署合作伙伴协议,然后与Meta Audience Network设置出价合作伙伴关系

点击确认并同意,然后点击继续

如果您已有 Meta Audience Network的映射,则可以选择它。否则,请点击添加映射

接下来,输入在上一部分中获取的 Placement ID。接着,点击完成

Add Facebook to GDPR and US state regulations ad partners list

按照 GDPR 设置美国州级法规设置 中的步骤,将 Facebook 添加到 AdMob 界面中的 GDPR 和美国州级法规广告合作伙伴列表中。

Step 3: Import the Meta Audience Network SDK and adapter

In your app-level build.gradle.kts file, add the following implementation dependencies and configurations. Use the latest versions of the Meta Audience Network SDK and adapter:

dependencies {
    implementation("com.google.android.gms:play-services-ads:23.0.0")
    implementation("com.google.ads.mediation:facebook:6.16.0.0")
}

Manual integration

Step 4: Implement privacy settings on Meta Audience Network SDK

Under the Google EU User Consent Policy, you must ensure that certain disclosures are given to, and consents obtained from, users in the European Economic Area (EEA) regarding the use of device identifiers and personal data. This policy reflects the requirements of the EU ePrivacy Directive and the General Data Protection Regulation (GDPR). When seeking consent, you must identify each ad network in your mediation chain that may collect, receive, or use personal data and provide information about each network's use. Google currently is unable to pass the user's consent choice to such networks automatically.

Follow the guidance in Meta's documentation for GDPR and Meta advertising.

US states privacy laws

U.S. 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 via a prominent "Do Not Sell My Personal Information" link on the "selling" party's homepage. The U.S. 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.

Follow the guidance in Meta's documentation for data processing options for users in California.

Step 5: Add required code

No additional code is required for Meta Audience Network integration.

Step 6: Test your implementation

启用测试广告

请务必为AdMob 注册您的测试设备,并在 Meta Audience Network 界面中启用测试模式

验证测试广告

如需验证您收到的是来自Meta Audience Network的测试广告,请使用相应广告来源在广告检查器中启用单一广告来源测试Meta Audience Network (Bidding)

Optional steps

Native ads

Some Meta Audience Network native ad assets don't map one-to-one to Google native ad assets. Such assets are passed back to the publisher in a bundle through the getExtras() method in NativeAd. The adapter supports passing the following assets:

Request parameters and values
FacebookMediationAdapter.KEY_ID String. A unique ID of the native ad
FacebookMediationAdapter.KEY_SOCIAL_CONTEXT_ASSET String. The ad social context

Here's a code example showing how to extract these assets:

Example:

Java

Bundle extras = nativeAd.getExtras();
if (extras.containsKey(FacebookMediationAdapter.KEY_SOCIAL_CONTEXT_ASSET)) {
    String socialContext = extras.getString(FacebookMediationAdapter.KEY_SOCIAL_CONTEXT_ASSET);
    // ...
}

Kotlin

val extras = nativeAd.getExtras()
if (extras.containsKey(FacebookMediationAdapter.KEY_SOCIAL_CONTEXT_ASSET)) {
   var socialContext = extras.getString(FacebookMediationAdapter.KEY_SOCIAL_CONTEXT_ASSET)
   // ...
}

Using Meta Audience Network native ads without a MediaView

Meta Audience Network's native ad format requires rendering the MediaView asset. If you plan to render native ads without that asset, make sure to use Meta Audience Network's native banner ad format.

To use Meta Audience Network's native banner ads instead, you must:

  • Use Meta Audience Network adapter 5.4.1.0 or higher.

Ad rendering

The Audience Network adapter returns its native ads as NativeAd objects. It populates the following Native ads field descriptions for a NativeAd.

Field Populated by Meta Audience Network adapter
Headline
Image 1
Body
App icon
Call to action
Advertiser Name
Star rating
Store
Price

1 The Meta Audience Network adapter does not provide direct access to the main image asset for its native ads. Instead, the adapter populates the MediaView with a video or an image.

Impression and click tracking

The following table highlights when native ad impressions and clicks are recorded by the Google Mobile Ads SDK.

Impression recording Click recording
1px of Meta Audience Network native ad asset on screen + asset rendering requirements Meta Audience Network SDK callback

Meta Audience Network has specific asset rendering requirements in order for an impression to be considered valid, depending on whether you selected the Native or Native Banner format when setting up Meta Audience Network.

Meta Audience Network native format Required asset Required rendering class
Native Media View MediaView
Native Banner App icon ImageView

Caching on Android 9

Starting with Android 9 (API level 28), cleartext support is disabled by default, which will affect the functionality of media caching of the Meta Audience Network SDK and could affect user experience and ads revenue. Follow Meta's documentation to update the network security configuration in your app.

Error codes

If the adapter fails to receive an ad from Audience Network, you can check the underlying error from the ad response using ResponseInfo.getAdapterResponse() under the following classes:

com.google.ads.mediation.facebook.FacebookAdapter
com.google.ads.mediation.facebook.FacebookMediationAdapter

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

Error code Reason
101 Invalid server parameters (e.g. missing Placement ID).
102 The requested ad size does not match a Meta Audience Network supported banner size.
103 The publisher must request ads with an Activity context.
104 The Meta Audience Network SDK failed to initialize.
105 The publisher did not request for Unified native ads.
106 The native ad loaded is a different object than the one expected.
107 The Context object used is invalid.
108 The loaded ad is missing the required native ad assets.
109 Failed to create a native ad from the bid payload.
110 The Meta Audience Network SDK failed to present their interstitial/rewarded ad.
111 Exception thrown when creating a Meta Audience Network AdView object.
1000-9999 The Meta Audience Network returned an SDK-specific error. See Meta Audience Network's documentation for more details.

Meta Audience Network Android Mediation Adapter Changelog

Next Version

  • Updated the minimum required Google Mobile Ads SDK version to 22.4.0.

Version 6.16.0.0

  • Updated the adapter to call MediationInterstitialAdCallback#onAdFailedToShow() when Meta SDK reports that interstitial ad show failed.
  • Verified compatibility with Meta Audience Network SDK v6.16.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.3.0.
  • Meta Audience Network SDK version 6.16.0.

Version 6.15.0.0

  • Verified compatibility with Meta Audience Network SDK v6.15.0.
  • Updated the minimum required Google Mobile Ads SDK version to 22.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.2.0.
  • Meta Audience Network SDK version 6.15.0.

Version 6.14.0.0

  • Verified compatibility with Meta Audience Network SDK v6.14.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.0.0.
  • Meta Audience Network SDK version 6.14.0.

Version 6.13.7.1

  • Updated adapter to use new VersionInfo class.
  • Updated the minimum required Google Mobile Ads SDK version to 22.0.0.

Built and tested with:

  • Google Mobile Ads SDK version 22.0.0.
  • Meta Audience Network SDK version 6.13.7.

Version 6.13.7.0

  • Verified compatibility with Meta Audience Network SDK v6.13.7.
  • Updated the minimum required Google Mobile Ads SDK version to 21.5.0.

Built and tested with:

  • Google Mobile Ads SDK version 21.5.0.
  • Meta Audience Network SDK version 6.13.7.

Version 6.12.0.0

  • Verified compatibility with Meta Audience Network SDK v6.12.0.
  • Updated the minimum required Google Mobile Ads SDK version to 21.2.0.
  • Rebranded adapter name to "Meta Audience Network".
  • Removed waterfall integration.

Built and tested with:

  • Google Mobile Ads SDK version 21.2.0.
  • Meta Audience Network SDK version 6.12.0.

Version 6.11.0.1

  • Updated compileSdkVersion and targetSdkVersion to API 31.
  • Updated the minimum required Google Mobile Ads SDK version to 21.0.0.
  • Updated the minimum required Android API level to 19.

Built and tested with:

  • Google Mobile Ads SDK version 21.0.0.
  • Facebook SDK version 6.11.0.

Version 6.11.0.0

  • Verified compatibility with Facebook SDK v6.11.0.
  • Added warning messages for waterfall mediation deprecation. See Meta's blog for more information.

Built and tested with:

  • Google Mobile Ads SDK version 20.6.0.
  • Facebook SDK version 6.11.0.

Version 6.10.0.0

  • Verified compatibility with Facebook SDK v6.10.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.6.0.
  • Facebook SDK version 6.10.0.

Version 6.8.0.1

  • Added support for forwarding click and impression callbacks in bidding ads.
  • Added support for forwarding the onAdFailedToShow() callback when interstitial bidding ads fail to present.
  • Updated the minimum required Google Mobile Ads SDK version to 20.6.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.6.0.
  • Facebook SDK version 6.8.0.

Version 6.8.0.0

  • Verified compatibility with Facebook SDK v6.8.0.
  • Updated the minimum required Google Mobile Ads SDK version to 20.4.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.4.0.
  • Facebook SDK version 6.8.0.

Version 6.7.0.0

  • Verified compatibility with Facebook SDK v6.7.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.3.0.
  • Facebook SDK version 6.7.0.

Version 6.6.0.0

  • Verified compatibility with Facebook SDK v6.6.0.
  • Updated the minimum required Google Mobile Ads SDK version to 20.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.3.0.
  • Facebook SDK version 6.6.0.

Version 6.5.1.1

  • Fixed a bug introduced in 6.5.1.0 where test ads are returned instead of live ads.
  • Updated the adapter to use the new AdError API.

Built and tested with:

  • Google Mobile Ads SDK version 20.2.0.
  • Facebook SDK version 6.5.1.

Version 6.5.1.0 (Deprecated)

  • An issue with version 6.5.1.0 has been detected and confirmed. It is recommended to upgrade to version 6.5.1.1.
  • Verified compatibility with Facebook SDK v6.5.1.
  • Updated the minimum required Google Mobile Ads SDK version to 20.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.2.0.
  • Facebook SDK version 6.5.1.

Version 6.5.0.0

  • Verified compatibility with Facebook SDK v6.5.0.
  • Fixed an issue where native ads did not include Facebook's cover image.
  • Updated the minimum required Google Mobile Ads SDK version to 20.1.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.1.0.
  • Facebook SDK version 6.5.0.

Version 6.4.0.0

  • Verified compatibility with Facebook SDK v6.4.0.
  • Updated the minimum required Google Mobile Ads SDK version to 20.0.0.

Built and tested with:

  • Google Mobile Ads SDK version 20.0.0.
  • Facebook SDK version 6.4.0.

Version 6.3.0.1

  • Fixed an issue where a ClassCastException is thrown when rendering native ads on apps that don't use ImageView to render image assets.

Built and tested with:

  • Google Mobile Ads SDK version 19.7.0.
  • Facebook SDK version 6.3.0.

Version 6.3.0.0

  • Verified compatibility with Facebook SDK v6.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.7.0.
  • Facebook SDK version 6.3.0.

Version 6.2.1.0

  • Verified compatibility with Facebook SDK v6.2.1.
  • Updated the minimum required Google Mobile Ads SDK version to 19.7.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.7.0.
  • Facebook SDK version 6.2.1.

Version 6.2.0.1

  • Removed support for the deprecated NativeAppInstallAd format. Apps should request for unified native ads.
  • Updated the minimum required Google Mobile Ads SDK version to 19.6.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.6.0.
  • Facebook SDK version 6.2.0.

Version 6.2.0.0

  • Verified compatibility with Facebook SDK v6.2.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.5.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.5.0.
  • Facebook SDK version 6.2.0.

Version 6.1.0.0

  • Verified compatibility with Facebook SDK v6.1.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.4.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.4.0.
  • Facebook SDK version 6.1.0.

Version 6.0.0.0

  • Verified compatibility with Facebook SDK v6.0.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.3.0.
  • Facebook SDK version 6.0.0.

Version 5.11.0.0

  • Verified compatibility with Facebook SDK v5.11.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • Facebook SDK version 5.11.0.

Version 5.10.1.0

  • Verified compatibility with Facebook SDK v5.10.1.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • Facebook SDK version 5.10.1.

Version 5.10.0.0

  • Verified compatibility with Facebook SDK v5.10.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • Facebook SDK version 5.10.0.

Version 5.9.1.0

  • Verified compatibility with Facebook SDK v5.9.1.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • Facebook SDK version 5.9.1.

Version 5.9.0.2

  • Added support for rewarded interstitial ads.
  • Updated the adapter to support inline adaptive banner requests.
  • Fixed an issue where bidding banner ads always render full-width.
  • Updated the minimum required Google Mobile Ads SDK version to 19.2.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.2.0.
  • Facebook SDK version 5.9.0.

Version 5.9.0.1

  • Adapter now forwards an error if the FAN SDK encounters an error while presenting an interstitial/rewarded ad.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • Facebook SDK version 5.9.0.

Version 5.9.0.0

  • Verified compatibility with Facebook SDK v5.9.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • Facebook SDK version 5.9.0.

Version 5.8.0.2

  • Fixed incorrect variable reference which caused a crash in certain scenarios when loading native ads.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • Facebook SDK version 5.8.0.

Version 5.8.0.1

  • Added additional descriptive error codes and reasons for adapter load/show failures.
  • Updated the minimum required Google Mobile Ads SDK version to 19.1.0.

Built and tested with:

  • Google Mobile Ads SDK version 19.1.0.
  • Facebook SDK version 5.8.0.

Version 5.8.0.0

  • Verified compatibility with Facebook SDK v5.8.0.
  • Updated the minimum required Google Mobile Ads SDK version to 19.0.1.

Built and tested with:

  • Google Mobile Ads SDK version 19.0.1.
  • Facebook SDK version 5.8.0.

Version 5.7.1.1

  • Added support for Facebook Audience Network adapter errors.
  • Added descriptive error codes and reasons for adapter load/show failures.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • Facebook SDK version 5.7.1.

Version 5.7.1.0

  • Verified compatibility with Facebook SDK v5.7.1.
  • Added support for Facebook Native Banner ads when using bidding.
  • Native ads now use 'Drawable' for the icon asset.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • Facebook SDK version 5.7.1.

Version 5.7.0.0

  • Verified compatibility with Facebook SDK v5.7.0.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • Facebook SDK version 5.7.0.

Version 5.6.1.0

  • Verified compatibility with Facebook SDK v5.6.1.
  • Updated the minimum required Google Mobile Ads SDK version to 18.3.0.

Built and tested with:

  • Google Mobile Ads SDK version 18.3.0.
  • Facebook SDK version 5.6.1.

Version 5.6.0.0

  • Verified compatibility with Facebook SDK v5.6.0.
  • Updated Facebook Adapter to use AdChoicesView.

Built and tested with:

  • Google Mobile Ads SDK version 18.2.0.
  • Facebook SDK version 5.6.0.

Version 5.5.0.0

  • Verified compatibility with Facebook SDK v5.5.0.

Version 5.4.1.1

  • Fixed an issue that causes a crash when Native Ads are removed.

Version 5.4.1.0

  • Verified compatibility with Facebook SDK v5.4.1.
  • Added support for Facebook Native Banner Ads for waterfall mediation.
    • Use setNativeBanner() from the FacebookExtras class to request for Native Banner Ads.
  • Fixed an issue that caused Smart Banner Ad requests to fail.
  • Fixed an issue where Rewarded Video Ads were not forwarding the onAdClosed() event in some cases where the app was backgrounded while the video was in progress.
  • Migrated the adapter to AndroidX.
  • Updated the minimum required Google Mobile Ads SDK version to 18.1.1.

Version 5.4.0.0

  • Verified compatibility with Facebook SDK v5.4.0.

Version 5.3.1.2

  • Fixed a bug where Facebook bidding failed to initialize due to "No placement IDs found".

Version 5.3.1.1

  • Updated native RTB ads impression tracking.
  • Updated the minimum required Google Mobile Ads SDK version to 17.2.1.

Version 5.3.1.0

  • Added bidding capability to the adapter for banner, interstitial, rewarded and native ads.
  • Verified compatibility with Facebook SDK v5.3.1.

Version 5.3.0.0

  • Updated mediation service name for Google Mobile Ads.
  • Added adapter version to the initialization call.
  • Verified compatibility with Facebook SDK v5.3.0.

Version 5.2.0.2

  • Added support for flexible banner ad sizes.

Version 5.2.0.1

  • Updated adapter to support new open-beta Rewarded API.
  • Updated the minimum required Google Mobile Ads SDK version to 17.2.0.

Version 5.2.0.0

  • Verified compatibility with Facebook SDK v5.2.0.

Version 5.1.1.1

  • Updated the adapter to populate Advertiser Name for Unified Native Ads.

Version 5.1.1.0

  • Replaced AdChoices View with AdOptions View.
  • Verified compatibility with Facebook SDK v5.1.1

Version 5.1.0.1

  • Fixed an ANR issue caused by 'getGMSVersionCode()'.

Version 5.1.0.0

  • Initialize Facebook SDK for each ad format.

Version 5.0.1.0

  • Verified compatibility with Facebook SDK v5.0.1.

Version 5.0.0.1

  • Updated the adapter to create the rewarded ad object at ad request time.

Version 5.0.0.0

  • Verified compatibility with Facebook SDK v5.0.0.

Version 4.99.3.0

  • Verified compatibility with Facebook SDK v4.99.3.

Version 4.99.1.1

  • Fixed a bug where the Ad Choices icon is not shown for Unified Native Ads.
  • Fixed a bug where the adapter would throw an exception when trying to download images.

Version 4.99.1.0

  • Verified compatibility with Facebook SDK v4.99.1.

Version 4.28.2.1

  • Updated the adapter to invoke the onRewardedVideoComplete() ad event.

Version 4.28.2.0

  • Verified compatibility with Facebook SDK v4.28.2.

Version 4.28.1.1

  • Fixed an issue where clicks are not being registered for Unified Native Ads.

Version 4.28.1.0

  • Verified compatibility with Facebook SDK v4.28.1.

Version 4.28.0.0

  • Verified compatibility with Facebook SDK v4.28.0.

Version 4.27.1.0

  • Verified compatibility with Facebook SDK v4.27.1.

Version 4.27.0.0

  • Verified compatibility with Facebook SDK v4.27.0.

Version 4.26.1.0

  • Verified compatibility with Facebook SDK v4.26.1.
  • Updated the Adapter project for Android Studio 3.0

Version 4.26.0.0

  • Added support for rewarded video ads.
  • Added support for native video ads.
  • Verified compatibility with Facebook SDK v4.26.0.

Version 4.25.0.0

  • Fixed an issue where incorrectly sized banners were being returned.
  • Updated the adapter's view tracking for native ads to register individual asset views with the Facebook SDK rather than the entire ad view. This means that background (or "whitespace") clicks on the native ad will no longer result in clickthroughs.
  • Verified compatibility with Facebook SDK v4.25.0.

Version 4.24.0.0

  • Verified compatibility with Facebook SDK v4.24.0.

Version 4.23.0.0

  • Verified compatibility with Facebook SDK v4.23.0.

Version 4.22.1.0

  • Verified compatibility with Facebook SDK v4.22.1.

Version 4.22.0.0

  • Updated the adapter to make it compatible with Facebook SDK v4.22.0.

Version 4.21.1.0

  • Verified compatibility with Facebook SDK v4.21.1.

Version 4.21.0.0

  • Verified compatibility with Facebook SDK v4.21.0.

Version 4.20.0.0

  • Updated the minimum supported Android API level to 14+.
  • Verified compatibility with Facebook SDK v4.20.0.

Version 4.19.0.0

  • Verified compatibility with Facebook SDK v4.19.0.

Version 4.18.0.0

  • Verified compatibility with Facebook SDK v4.18.0.

Version 4.17.0.0

  • Added support for native ads.

Version 4.15.0.0

  • Changed the version naming system to [FAN SDK version].[adapter patch version].
  • Updated the minimum required FAN SDK to v4.15.0.
  • Updated the minimum required Google Mobile Ads SDK to v9.2.0.
  • Fixed a bug where Facebook's click callbacks for interstitial ads weren't forwarded correctly.
  • The adapter now also forwards onAdLeftApplication when an ad is clicked.

Version 1.2.0

  • Fixed a bug that so that AdSize.SMART_BANNER is now a valid size.

Version 1.1.0

  • Added support for full width x 250 format when request is for AdSize.MEDIUM_RECTANGLE

Version 1.0.1

  • Added support for AdSize.SMART_BANNER

Version 1.0.0

  • Initial release