미디에이션과 Mintegral 통합

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

Supported integrations and ad formats

The AdMob mediation adapter for Mintegral has the following capabilities:

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

1 Bidding integration for this format is in closed beta.

2 Waterfall integration for this format is in closed beta.

3 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 the Google Mobile Ads SDK. See Get Started for details.
  • Complete the mediation Get started guide

Step 1: Set up configurations in Mintegral UI

注册登录您的 Mintegral 帐号。

查找应用密钥

前往应用设置标签页,然后记下应用密钥

添加新应用

应用设置标签页中,点击添加应用按钮。

选择平台,然后填写表单的其余部分。然后,点击保存

Android

iOS

记下您应用的应用 ID

Android

iOS

创建广告展示位置

创建应用后,转到展示位置和单元标签页,然后点击添加展示位置按钮(如下所示),即可创建广告展示位置。

Android

iOS

输入展示位置名称广告格式

出价

选择标头出价作为出价类型。填写表单的其余部分,然后点击保存

瀑布

选择传统作为出价类型。填写表单的其余部分,然后点击保存

创建广告展示位置后,请记下展示位置 ID

Android

iOS

点击 1 个广告单元下拉菜单,并记下 AD Unit ID(广告单元 ID)。

Android

iOS

找到您的 Mintegral Reporting API 密钥

出价

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

瀑布

您需要使用 Mintegral Reporting API 密钥来设置AdMob 广告单元 ID。前往帐号 > API 工具。记下您的 SkeySecret

Step 2: Set up Mintegral demand in AdMob UI

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

Android

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

iOS

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

Add Mintegral to GDPR and US state regulations ad partners list

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

Step 3: Import the Mintegral SDK and adapter

pub.dev를 통한 통합

패키지의 pubspec.yaml 파일에 있는 최신 버전의Mintegral SDK 및 어댑터와 함께 다음 종속 항목을 추가합니다.

dependencies:
  gma_mediation_mintegral: ^1.0.0

수동 통합

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

dependencies:
  gma_mediation_mintegral:
    path: path/to/local/package

Step 4: Add required code

Android

No additional code is required for Mintegral integration.

iOS

SKAdNetwork integration

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

Step 5: Test your implementation

테스트 광고 사용 설정

AdMob

배너, 전면 광고, 보상형 광고, 네이티브 광고 형식용 Mintegral 테스트 광고를 가져오려면 Mintegral 테스트 ID 페이지.

테스트 광고 확인

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

Error codes

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

Android

com.mbridge.msdk
com.google.ads.mediation.mintegral.MintegralMediationAdapter

iOS

GADMediationAdapterMintegral

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

Android

Error code Domain Reason
101 com.google.ads.mediation.mintegral Invalid server parameters (e.g. Missing app ID or placement ID).
102 com.google.ads.mediation.mintegral The requested ad size does not match a Mintegral supported banner size.
103 com.google.ads.mediation.mintegral Missing or invalid bid response.
104 com.google.ads.mediation.mintegral Mintegral SDK returned a no fill error.

iOS

Error code Domain Reason
101 com.google.mediation.mintegral Invalid server parameters (e.g. Missing app ID or placement ID).
102 com.google.mediation.mintegral Mintegral SDK returned a no fill error.
103 com.google.mediation.mintegral Mintegral SDK failed to show an ad.
104 com.google.mediation.mintegral The requested ad size does not match a Mintegral supported banner size.

Mintegral Flutter Mediation Adapter Changelog

1.0.0

  • Initial release.
  • Verified compatibility with Mintegral Android adapter version 16.7.21.0.
  • Verified compatibility with Mintegral iOS adapter version 7.6.3.0.
  • Built and tested with the Google Mobile Ads Flutter Plugin version 5.1.0.