Integracja Liftoff Zarabiaj z zapośredniczeniem

This guide shows you how to use the Google Mobile Ads SDK to load and display ads from Liftoff Monetize using mediation, covering both bidding and waterfall integrations. It covers how to add Liftoff Monetize to an ad unit's mediation configuration, and how to integrate the Vungle SDK and adapter into a Flutter app.

Supported integrations and ad formats

Integration
Bidding
Waterfall
Formats
App Open 1, 3
Banner 2
Interstitial
Rewarded
Rewarded Interstitial 2

1 Bidding integration for this format is in closed beta.

2 Bidding integration for this format is in open beta.

3 Waterfall integration for this format is in closed beta.

Requirements

  • Latest Google Mobile Ads SDK
  • Flutter 3.7.0 or higher
  • To deploy on Android
    • Android API level 21 or higher
  • To deploy on iOS
    • iOS deployment target of 12.0 or higher
  • A working Flutter project configured with Google Mobile Ads SDK. See Get Started for details.
  • Complete the mediation Get started guide

Step 1: Set up configurations in Liftoff Monetize UI

注册登录您的 Liftoff Monetize 帐号。

点击添加应用按钮,将您的应用添加到 Liftoff Monetize 信息中心

填写表单,输入所有必填的详细信息。

Android

iOS

创建应用后,从 Liftoff Monetize Applications 信息中心选择您的应用。

Android

iOS

记下应用 ID

Android

iOS

添加新的展示位置

如需创建要与 AdMob中介结合使用的新展示位置,请前往 Liftoff“Monetize Placement”信息中心,点击添加展示位置按钮,然后从下拉列表中选择您的应用。

有关添加新展示位置的详情,请参见下文:

打开应用

选择插页式,然后输入展示位置名称。然后,针对可跳过选择,并填写表单的其余部分。[仅出价] 在创收下,将应用内出价开关切换为已启用。点击页面底部的继续按钮以创建展示位置。

选择横幅,输入展示位置名称,然后填写表单的其余部分。[仅出价] 在创收下,将应用内出价开关切换为已启用。点击页面底部的继续按钮创建展示位置。

300 x 250 横幅

选择 MREC,输入展示位置名称,然后填写表单的其余部分。[仅出价] 在创收下,将应用内出价开关切换为已启用。点击页面底部的继续按钮创建展示位置。

插页式广告

选择 插页式广告,输入展示位置名称,然后填写表单的其余部分。[仅出价] 在创收下,将应用内出价开关切换为已启用。点击页面底部的继续按钮以创建展示位置。

已奖励

选择激励广告,输入展示位置名称并填写表单的其余部分。[仅出价] 在创收下,将应用内出价开关切换为已启用。点击页面底部的继续按钮创建展示位置。

插页式激励广告

选择激励广告。输入展示位置名称,启用可跳过并填写表单的其余部分。[仅出价] 在创收下,将应用内出价开关切换为已启用。点击页面底部的继续按钮以创建展示位置。

原生

选择原生,输入展示位置名称,然后填写表单的其余部分。[仅出价] 在创收下,将应用内出价开关切换为已启用。点击页面底部的继续按钮创建展示位置。

记下参考 ID,然后点击听起来不错

打开应用

300 x 250 横幅

插页式广告

已奖励

插页式激励广告

原生

找到您的 Reporting API 密钥

出价

出价集成不需要执行此步骤。

瀑布

除了应用 ID参考 ID 之外,您还需要 Liftoff Monetize Reporting API 密钥才能设置AdMob 广告单元 ID。前往 Liftoff Monetize Reports 信息中心,然后点击 Reporting API Key 按钮,查看您的 Reporting API Key

开启测试模式

如需启用测试广告,请转到 Liftoff Monetize 信息中心并导航到 Applications

在应用的展示位置参考 ID 部分下,选择要启用测试广告的应用。在状态部分下,将测试模式选为仅显示测试广告即可启用测试广告。

Android

iOS

Step 2: Set up Liftoff Monetize demand in AdMob UI

Konfigurowanie ustawień zapośredniczenia dla jednostki reklamowej

Android

Instrukcje znajdziesz w kroku 2 instrukcji na Androida.

iOS

Instrukcje znajdziesz w kroku 2 przewodnika po iOS.

Add Liftoff to GDPR and US state regulations ad partners list

Wykonaj czynności opisane w sekcji Ustawienia RODO i Ustawienia amerykańskich przepisów stanowych , aby dodać Liftoff do listy partnerów reklamowych zgodnych z RODO i amerykańskimi przepisami stanowymi w AdMob UI.

Step 3: Import the Vungle SDK and Liftoff Monetize adapter

Integracja za pomocą pub.dev

Dodaj tę zależność do najnowszych wersji pakietuLiftoff Monetize SDK i adaptera w pliku pubspec.yaml pakietu:

dependencies:
  gma_mediation_liftoffmonetize: ^1.0.0

Integracja ręczna

Pobierz najnowszą wersję wtyczki zapośredniczenia reklam mobilnych Google dla Liftoff Monetize, wyodrębnij pobrany plik i dodaj do projektu Flutter wyodrębniony folder wtyczki (wraz z jego zawartością). Następnie odwołaj się do wtyczki w pliku pubspec.yaml, dodając tę zależność:

dependencies:
  gma_mediation_liftoffmonetize:
    path: path/to/local/package

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

The Google Mobile Ads mediation plugin for Liftoff Monetize includes the GmaMediationLiftoffmonetize.setGDPRStatus() method. The following sample code shows how to pass consent information to the Vungle SDK. If you choose to call this method, it is recommended to call it prior to requesting ads through the Google Mobile Ads SDK.

import 'package:gma_mediation_liftoffmonetize/gma_mediation_liftoffmonetize.dart';
// ...

GmaMediationLiftoffmonetize.setGDPRStatus(true, "1.0.0");

See GDPR recommended implementation instructions for Android and iOS for more details and the values that can be provided in the method.

US state 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.

The Google Mobile Ads mediation plugin for Liftoff Monetize includes the GmaMediationLiftoffmonetize.setCCPAStatus() method. The following sample code shows how to pass consent information to the Vungle SDK. If you choose to call this method, it is recommended to call it prior to requesting ads through the Google Mobile Ads SDK.

import 'package:gma_mediation_liftoffmonetize/gma_mediation_liftoffmonetize.dart';
// ...

GmaMediationLiftoffmonetize.setCCPAStatus(true);

See CCPA recommended implementation instructions for Android and iOS for more details and the values that can be provided in the method.

Step 5: Add required code

Android

No additional code is required Liftoff Monetize integration.

iOS

SKAdNetwork integration

Follow Liftoff Monetize's documentation to add the SKAdNetwork identifiers to your project's Info.plist file.

Step 6: Test your implementation

Włącz reklamy testowe

Zarejestruj urządzenie testowe na potrzeby AdMob i włącz tryb testowy w Liftoff Monetize interfejsie użytkownika.

Weryfikacja reklam testowych

Aby sprawdzić, czy otrzymujesz reklamy testowe z witrynyLiftoff Monetize, włącz w inspektorze reklam testowanie pojedynczego źródła reklam, korzystając z Liftoff Monetize (Bidding) and Liftoff Monetize (Waterfall) źródeł reklam.

Error codes

If the adapter fails to receive an ad from Liftoff Monetize, publishers can check the underlying error from the ad response using ResponseInfo under the following classes:

iOS

Format Class name
Banner GADMAdapterVungleInterstitial
Interstitial GADMAdapterVungleInterstitial
Rewarded GADMAdapterVungleRewardBasedVideoAd

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

iOS

Error code Reason
1-100 Vungle SDK returned an error. See code for more details.
101 Liftoff Monetize server parameters configured in the AdMob UI are missing/invalid.
102 An ad is already loaded for this network configuration. Vungle SDK cannot load a second ad for the same placement ID.
103 The requested ad size does not match a Liftoff Monetize supported banner size.
104 Vungle SDK could not render the banner ad.
105 Vungle SDK only supports loading 1 banner ad at a time, regardless of placement ID.
106 Vungle SDK sent a callback saying the ad is not playable.

Liftoff Monetize Flutter Mediation Adapter Changelog

Version 1.0.0

  • Initial release.
  • Verified compatibility with Liftoff Monetize Android adapter version 7.3.1.0
  • Verified compatibility with LiftoffMonetize iOS adapter version 7.3.2.0
  • Built and tested with the Google Mobile Ads Flutter Plugin version 5.1.0.