미디에이션에 Liftoff Monetize 통합

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, 2
Banner 1
Interstitial
Rewarded
Rewarded Interstitial 1
Native 1, 2

1 Bidding integration for this format is in open beta.

2 Waterfall integration for this format is in open 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

Step 2: Set up Liftoff Monetize demand in AdMob UI

광고 단위에 대한 미디에이션 설정 구성

Android

자세한 내용은 Android 가이드의 2단계를 참고하세요.

iOS

자세한 내용은 iOS 가이드의 2단계를 참고하세요.

Add Liftoff to GDPR and US state regulations ad partners list

GDPR 설정미국 주 규정 설정 Liftoff 를 AdMob UI의 GDPR 및 미국 주 규정 광고 파트너 목록에 추가합니다.

Step 3: Import the Vungle SDK and Liftoff Monetize adapter

pub.dev를 통한 통합

다음 종속 항목을 최신 버전의 Liftoff Monetize 패키지에 있는 SDK 및 어댑터 pubspec.yaml 파일:

dependencies:
  gma_mediation_liftoffmonetize: ^1.0.0

수동 통합

Google 모바일 광고 미디에이션 플러그인 최신 버전 다운로드 Liftoff Monetize님, 다운로드한 파일을 추출하고 추출된 플러그인 폴더를 추가합니다. (및 그 콘텐츠를) Flutter 프로젝트에 추가합니다. 그런 다음 pubspec.yaml 파일에 다음 종속 항목을 추가합니다.

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

테스트 광고 사용 설정

AdMob 용 테스트 기기를 등록하고 Liftoff Monetize UI에서 테스트 모드를 사용 설정해야 합니다.

테스트 광고 확인

Liftoff Monetize에서 테스트 광고를 수신하고 있는지 확인하려면 광고 검사기에서 Liftoff Monetize (Bidding) and Liftoff Monetize (Waterfall) 광고 소스를 사용하여 단일 광고 소스 테스트를 사용 설정하세요.

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:

Android

Format Class name
App Open (Bidding) com.google.ads.mediation.vungle.VungleMediationAdapter
App Open (Waterfall) com.google.ads.mediation.vungle.VungleMediationAdapter
Banner (Bidding) com.google.ads.mediation.vungle.VungleMediationAdapter
Banner (Waterfall) com.vungle.mediation.VungleInterstitialAdapter
Interstitial (Bidding) com.google.ads.mediation.vungle.VungleMediationAdapter
Interstitial (Waterfall) com.vungle.mediation.VungleInterstitialAdapter
Rewarded (Bidding) com.google.ads.mediation.vungle.VungleMediationAdapter
Rewarded (Waterfall) com.vungle.mediation.VungleAdapter
Rewarded Interstitial (Bidding) com.google.ads.mediation.vungle.VungleMediationAdapter
Rewarded Interstitial (Waterfall) com.google.ads.mediation.vungle.VungleMediationAdapter

iOS

Format Class name
App Open (Bidding) GADMediationAdapterVungle
App Open (Waterfall) GADMediationAdapterVungle
Banner (Bidding) GADMediationAdapterVungle
Banner (Waterfall) GADMAdapterVungleInterstitial
Interstitial (Bidding) GADMediationAdapterVungle
Interstitial (Waterfall) GADMAdapterVungleInterstitial
Rewarded (Bidding) GADMediationAdapterVungle
Rewarded (Waterfall) GADMAdapterVungleRewardBasedVideoAd
Rewarded Interstitial (Bidding) GADMediationAdapterVungle
Rewarded Interstitial (Waterfall) GADMediationAdapterVungle

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

Android

Error code Reason
101 Invalid server parameters (e.g. app ID or placement ID).
102 The requested banner size does not map to a valid Liftoff Monetize ad size.
103 Liftoff Monetize requires an Activity context to request ads.
104 The Vungle SDK cannot load multiple ads for the same placement ID.
105 The Vungle SDK failed to initialize.
106 Vungle SDK returned a successful load callback, but Banners.getBanner() or Vungle.getNativeAd() returned null.
107 Vungle SDK is not ready to play the ad.
108 Vungle SDK returned invalid bidding token.

iOS

Error code Reason
101 Invalid server parameters (e.g. app ID or placement ID).
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.
107 Vungle SDK is not ready to play the ad.

For errors that come from the Vungle SDK, refer to Error Codes: Vungle SDK for iOS and Android.

Liftoff Monetize Flutter Mediation Adapter Changelog

Version 1.1.0

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

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.