Integra Chartboost con la mediazione

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

Supported integrations and ad formats

The mediation adapter for Chartboost has the following capabilities:

Integration
Bidding
Waterfall
Formats
Banner
Interstitial
Rewarded
Native

Requirements

  • iOS deployment target of 12.0 or higher

Step 1: Set up configurations in Chartboost UI

注册 Chartboost 账号,并在账号通过验证后登录。 然后,转到应用管理标签页。

Chartboost 应用信息中心

点击 Add new app 按钮创建应用。

应用管理

填写表单的其余部分,然后点击 Add App(添加应用)按钮,完成应用。

新建应用表单

创建应用后,系统会将您定向到该应用的信息中心。记下应用的应用 ID应用签名

应用设置

AdMob 需要 Chartboost 用户 ID用户签名,用于设置您的 AdMob 广告单元 ID。您可以通过点击 Chartboost 界面中的 Chartboost 中介找到这些参数。

Chartboost 中介信息中心

转到资源 > API Explorer 标签页,并记下身份验证部分下的用户 ID用户签名

Chartboost API Explorer

开启测试模式

您可以为应用启用测试模式,方法是从 Chartboost 界面中转到应用管理标签页,从列表中选择您的应用,然后点击 Edit app settings(修改应用设置)。

修改应用设置

在应用的设置中,您可以开启/关闭应用的测试模式

Chartboost 测试模式

启用测试模式后,您可以使用之前创建的广告单元 ID 请求广告,并接收 Chartboost 测试广告。

在您能够收到 Chartboost 测试广告后,您的应用将会参与 Chartboost 的 Publisher App Review 审核。为了确保 Chartboost 能够正常使用创收功能,发布商应用审核需要获得 Chartboost 的批准。

Step 2: Set up Chartboost demand in AdMob UI

Configurare le impostazioni di mediazione per l'unità pubblicitaria

Devi aggiungere Chartboost alla configurazione della mediazione per la tua unità pubblicitaria.

Innanzitutto, accedi all'account AdMob. Quindi, vai alla scheda Mediazione. Se vuoi modificare un gruppo di mediazione esistente, fai clic sul nome del gruppo per modificarlo e vai alla sezione Aggiungi Chartboost come origine annuncio.

Per creare un nuovo gruppo di mediazione, seleziona Crea gruppo di mediazione.

Inserisci il formato dell'annuncio e la piattaforma, poi fai clic su Continua.

Assegna un nome al gruppo di mediazione e seleziona le località da scegliere come target. Imposta lo stato del gruppo di mediazione su Attivato e fai clic su Aggiungi unità pubblicitarie.

Associa questo gruppo di mediazione a una o più unità pubblicitarieAdMob esistenti. Poi, fai clic su Fine.

A questo punto, dovresti vedere la scheda delle unità pubblicitarie compilata con quelle selezionate:

Aggiungi Chartboost come origine annuncio

Nella scheda Con struttura a cascata della sezione Origini annuncio, seleziona Aggiungi origine annuncio. Seleziona Chartboost.

Seleziona Chartboost e attiva l'opzione Ottimizza. Inserisci quanto User ID and User Signature ottenuto nella sezione precedente per configurare l'ottimizzazione dell'origine annuncio per Chartboost. Inserisci un valore eCPM perChartboost e fai clic su Continua.

Se hai già una mappatura per Chartboost, puoi selezionarla. In caso contrario, fai clic su Aggiungi mappatura.

Quindi, inserisci l' App ID, App Signature and Ad Location ottenuto nella sezione precedente. Poi, fai clic su Fine.

Le posizioni degli annunci Chartboost (Località indicate) sono nomi semplici che rappresentano un luogo della tua app in cui vuoi mostrare un annuncio. AdMob invia richieste alla località specificata nelle impostazioni. Una volta inviate le richieste, Chartboost aggiunge la località alla sua piattaforma per la generazione di report. Gli utenti hanno anche la possibilità di creare nuove posizioni degli annunci direttamente nella piattaforma Chartboost prima di chiamarle nei loro giochi.

Nell'interfaccia utente di Chartboost, le posizioni degli annunci possono essere visualizzate nella pagina Impostazioni di base facendo clic su Impostazioni avanzate. Per ulteriori dettagli, consulta la guida alle località chiamate di Chartboost.

Infine, fai clic su Fine per aggiungere Chartboost come origine annuncio e poi su Salva.

Add Chartboost to GDPR and US state regulations ad partners list

Segui i passaggi descritti in Impostazioni GDPR e Impostazioni relative alle normative statali degli Stati Uniti per aggiungere Chartboost all'elenco di partner pubblicitari per le normative GDPR e statali degli Stati Uniti nell' AdMob UI.

Step 3: Import the Chartboost SDK and adapter

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

    pod 'GoogleMobileAdsMediationChartboost'
    
  • From the command line run:

    pod install --repo-update
    

Manual integration

  • Download the latest version of the Chartboost SDK, and link Chartboost.framework and CHAMoatMobileAppKit.framework in your project.

  • Download the latest version of the Chartboost adapter from the download link in Changelog and link ChartboostAdapter.framework in your project.

  • Add the following frameworks to your project:

    • StoreKit
    • Foundation
    • CoreGraphics
    • WebKit
    • AVFoundation
    • UIKit

Step 4: Implement privacy settings on Chartboost 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.

In SDK version 8.2.0, Chartboost added the addDataUseConsent method. The following sample code sets data use consent to CHBGDPRConsentNonBehavioral. If you choose to call this method, it is recommended that you do so prior to requesting ads through the Google Mobile Ads SDK.

Swift

let dataUseConsent = CHBDataUseConsent.GDPR(CHBDataUseConsent.GDPR.Consent.nonBehavioral)
Chartboost.addDataUseConsent(dataUseConsent)

Objective-C

CHBGDPRDataUseConsent *dataUseConsent = [CHBGDPRDataUseConsent gdprConsent:CHBGDPRConsentNonBehavioral];
[Chartboost addDataUseConsent:dataUseConsent];

See Chartboost's GDPR article and their iOS Privacy Methods for more details and the values that can be provided in each method.

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.

In SDK version 8.2.0, Chartboost added the addDataUseConsent method. The following sample code sets data use consent to CHBCCPAConsentOptInSale. If you choose to call this method, it is recommended that you do so prior to requesting ads through the Google Mobile Ads SDK.

Swift

let dataUseConsent = CHBDataUseConsent.CCPA(CHBDataUseConsent.CCPA.Consent.optInSale)
Chartboost.addDataUseConsent(dataUseConsent)

Objective-C

CHBCCPADataUseConsent *dataUseConsent = [CHBCCPADataUseConsent ccpaConsent:CHBCCPAConsentOptInSale];
[Chartboost addDataUseConsent:dataUseConsent];

See Chartboost's CCPA article and their iOS Privacy Methods for more details and the values that can be provided in each method.

Error codes

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

GADMAdapterChartboost
GADMediationAdapterChartboost

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

Error code Reason
101 Chartboost server parameters configured in the AdMob UI are missing/invalid.
102 The Chartboost SDK returned an initialization error.
103 The Chartboost ad is not cached at show time.
104 The requested ad size does not match a Chartboost supported banner size.
105 Device's OS version is lower than Chartboost SDK's minimum supported OS version.
200-299 Chartboost SDK cache errors. See code for more details.
300-399 Chartboost SDK show errors. See code for more details.
400-499 Chartboost SDK click errors. See code for more details.

Chartboost iOS Mediation Adapter Changelog

Version 9.7.0.0

  • Verified compatibility with Chartboost SDK version 9.7.0.

Built and tested with:

  • Google Mobile Ads SDK version 11.2.0.
  • Chartboost SDK version 9.7.0.

Version 9.6.0.1

  • Now requires minimum iOS version 12.0.
  • Now requires Google Mobile Ads SDK version 11.0 or higher.
  • Included Info.plist in the frameworks within ChartboostAdapter.xcframework.

Built and tested with:

  • Google Mobile Ads SDK version 11.0.1.
  • Chartboost SDK version 9.6.0.

Version 9.6.0.0

  • Verified compatibility with Chartboost SDK version 9.6.0.
  • Replaced the deprecated method GADMobileAds.sharedInstance.sdkVersion with GADMobileAds.sharedInstance.versionNumber.
  • Added GADMediationInterstitialAd implementation.

Built and tested with:

  • Google Mobile Ads SDK version 10.14.0.
  • Chartboost SDK version 9.6.0.

Version 9.5.1.0

  • Verified compatibility with Chartboost SDK version 9.5.1.

Built and tested with:

  • Google Mobile Ads SDK version 10.12.0.
  • Chartboost SDK version 9.5.1.

Version 9.4.0.0

  • Verified compatibility with Chartboost SDK version 9.4.0.

Built and tested with:

  • Google Mobile Ads SDK version 10.7.0.
  • Chartboost SDK version 9.4.0.

Version 9.3.1.0

  • Verified compatibility with Chartboost SDK version 9.3.1.

Built and tested with:

  • Google Mobile Ads SDK version 10.7.0.
  • Chartboost SDK version 9.3.1.

Version 9.3.0.0

  • Verified compatibility with Chartboost SDK version 9.3.0.
  • Now requires minimum iOS version 11.0.
  • Now requires Google Mobile Ads SDK version 10.4.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 10.4.0.
  • Chartboost SDK version 9.3.0.

Version 9.2.0.0

  • Removed GADMChartboostExtras import in ChartboostAdapter header file.
  • Verified compatibility with Chartboost SDK version 9.2.0.
  • Now requires Google Mobile Ads SDK version 10.0.0 or higher.
  • Removed support for the armv7 architecture.
  • Now requires minimum iOS version of 11.0.

Built and tested with:

  • Google Mobile Ads SDK version 10.0.0.
  • Chartboost SDK version 9.2.0.

Version 9.1.0.0

  • Verified compatibility with Chartboost SDK version 9.1.0.

Built and tested with:

  • Google Mobile Ads SDK version 9.11.0.
  • Chartboost SDK version 9.1.0.

Version 9.0.0.0

  • Verified compatibility with Chartboost SDK version 9.0.0.
  • Verified compatibility with Google Mobile Ads SDK version 9.10.0.
  • Updated the adapter to use the didRewardUser API.
  • Now requires Google Mobile Ads SDK version 9.8.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 9.10.0.
  • Chartboost SDK version 9.0.0.

Version 8.5.0.2

  • Verified compatibility with Google Mobile Ads SDK version 9.0.0.
  • Now requires Google Mobile Ads SDK version 9.0.0 or higher.

Built and tested with:

  • Google Mobile Ads SDK version 9.0.0.
  • Chartboost SDK version 8.5.0.

Version 8.5.0.1.0

  • Verified compatibility with Chartboost SDK 8.5.0 that refers to version 8.5.0.1 in CocoaPods.

Built and tested with

  • Google Mobile Ads SDK version 8.13.0.
  • Chartboost SDK version 8.5.0.

Version 8.5.0.0

  • Verified compatibility with Chartboost SDK 8.5.0.

Built and tested with

  • Google Mobile Ads SDK version 8.12.0.
  • Chartboost SDK version 8.5.0.

Version 8.4.2.0

  • Verified compatibility with Chartboost SDK 8.4.2.

Built and tested with

  • Google Mobile Ads SDK version 8.6.0.
  • Chartboost SDK version 8.4.2.

Version 8.4.1.1

  • Relaxed dependency to Google Mobile Ads SDK version 8.0.0 or higher.

Built and tested with

  • Google Mobile Ads SDK version 8.4.0.
  • Chartboost SDK version 8.4.1.

Version 8.4.1.0

  • Verified compatibility with Chartboost SDK 8.4.1.
  • Now requires Google Mobile Ads SDK version 8.1.0 or higher.

Built and tested with

  • Google Mobile Ads SDK version 8.1.0.
  • Chartboost SDK version 8.4.1.

Version 8.4.0.1

  • Added standardized adapter error codes and messages.
  • Updated the adapter to use the .xcframework format.
  • Now requires Google Mobile Ads SDK version 8.0.0 or higher.

Built and tested with

  • Google Mobile Ads SDK version 8.0.0.
  • Chartboost SDK version 8.4.0.

Version 8.4.0.0

  • Verified compatibility with Chartboost SDK 8.4.0.
  • Now requires Google Mobile Ads SDK version 7.68.0 or higher.

Built and tested with

  • Google Mobile Ads SDK version 7.68.0.
  • Chartboost SDK version 8.4.0.

Version 8.3.1.0

  • Verified compatibility with Chartboost SDK 8.3.1.
  • Now requires Google Mobile Ads SDK version 7.66.0 or higher.
  • Now requires minimum iOS version of 10.0.
  • Updated the adapter to support adaptive banner requests.

Built and tested with

  • Google Mobile Ads SDK version 7.66.0.
  • Chartboost SDK version 8.3.1.

Version 8.2.1.0

  • Verified compatibility with Chartboost SDK 8.2.1.
  • Now requires Google Mobile Ads SDK version 7.64.0 or higher.
  • Now requires minimum iOS version of 9.0.

Built and tested with

  • Google Mobile Ads SDK version 7.64.0.
  • Chartboost SDK version 8.2.1.

Version 8.2.0.0

  • Verified compatibility with Chartboost SDK 8.2.0.
  • Now requires Google Mobile Ads SDK version 7.61.0 or higher.

Built and tested with

  • Google Mobile Ads SDK version 7.61.0.
  • Chartboost SDK version 8.2.0.

Version 8.1.0.1

  • Updated the minimum required Google Mobile Ads SDK version to 7.60.0.
  • Updated the adapter to use Chartboost's new API and removed deprecated APIs.
  • Adapter now supports loading multiple ads of the same format using the same Chartboost location.
  • If the reward is not overridden in the AdMob or Ad Manager UI, the reward value for rewarded ads is now the value specified in the Chartboost UI instead of 0.

Built and tested with

  • Google Mobile Ads SDK version 7.60.0.
  • Chartboost SDK version 8.1.0.

Version 8.1.0.0

  • Verified compatibility with Chartboost SDK 8.1.0.
  • Updated the minimum required Google Mobile Ads SDK version to 7.59.0.
  • Removed support for the i386 architecture.

Built and tested with

  • Google Mobile Ads SDK version 7.59.0.
  • Chartboost SDK version 8.1.0.

Version 8.0.4.0

  • Verified compatibility with Chartboost SDK 8.0.4.

Built and tested with

  • Google Mobile Ads SDK version 7.52.0.
  • Chartboost SDK version 8.0.4.

Version 8.0.1.1

  • Fixed an issue where requesting banner ads returns no fills.

Version 8.0.1.0

  • Verified compatibility with Chartboost SDK 8.0.1.
  • Added support to request banner ads.

Version 7.5.0.1

  • Added code to correctly initialize the Chartboost SDK.

Version 7.5.0.0

  • Verified compatibility with Chartboost SDK 7.5.0.
  • Updated the adapter to use the new rewarded API.
  • Updated the adapter to handle multiple interstitial requests.
  • Now requires Google Mobile Ads SDK version 7.42.2 or higher.

Version 7.3.0.0

  • Verified compatibility with Chartboost SDK 7.3.0.

Version 7.2.0.1

  • Added adapterDidCompletePlayingRewardBasedVideoAd: callback to the adapter.

Version 7.2.0.0

  • Verified compatibility with Chartboost SDK 7.2.0.

Version 7.1.2.0

  • Verified compatibility with Chartboost SDK 7.1.2.

Version 7.1.1.0

  • Verified compatibility with Chartboost SDK 7.1.1.

Version 7.1.0.0

  • Verified compatibility with Chartboost SDK 7.1.0.

Version 7.0.4.0

  • Verified compatibility with Chartboost SDK 7.0.4.

Version 7.0.3.0

  • Verified compatibility with Chartboost SDK 7.0.3.

Version 7.0.2.0

  • Verified compatibility with Chartboost SDK 7.0.2.
  • Added support for two new Chartboost error codes.

Version 7.0.1.0

  • Verified compatibility with Chartboost SDK 7.0.1.

Version 7.0.0.0

  • Verified compatibility with Chartboost SDK 7.0.0.

Version 6.6.3.0

  • Verified compatibility with Chartboost SDK 6.6.3.
  • Removed the support for 'armv7s' architecture.
  • Fixed a bug where publishers faced a compilation issue in Swift when importing ChartboostAdapter.framework as a module which was importing non-modular Chartboost SDK.

Version 6.6.2.0

  • Verified compatibility with Chartboost SDK 6.6.2.

Version 6.6.1.0

  • Verified compatibility with Chartboost SDK 6.6.1.

Version 6.6.0.0

  • Verified compatibility with Chartboost SDK 6.6.0.

Version 6.5.2.1

  • Enabled bitcode support.
  • Now distributing Chartboost adapter as a framework.
  • To import ChartboostAdapter.framework in your project, make sure to set Allow Non-modular Includes in Framework Modules to YES under Build Settings of your target.

Version 6.5.2.0

  • Changed the version naming system to [Chartboost SDK version].[adapter patch version].
  • Updated the minimum required Chartboost SDK to v6.5.1.
  • Updated the minimum required Google Mobile Ads SDK to v7.10.1.
  • Fixed a bug to support multiple Chartboost ad locations.
  • Apps now get the interstitialWillDismissScreen: callback when the interstitial ad is about to dismiss.
  • Apps now get the rewardBasedVideoAdDidOpen: callback when a reward-based video ad is opened.

Version 1.1.0

  • Removed Chartboost Ad Location from Chartboost extras. Ad Location is now specified in the AdMob console when configuring Chartboost for mediation.

Version 1.0.0

  • Initial release. Supports reward-based video ads and interstitial ads.