שילוב קו עם תהליך בחירת הרשת (Mediation) (בטא)

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

Supported integrations and ad formats

The AdMob mediation adapter for Line has the following capabilities:

Integration
Bidding
Waterfall  1
Formats
Banner
Interstitial
Rewarded

1 Waterfall integration is in open beta.

Requirements

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

Step 1: Set up configurations in Line UI

登录您的 Line 帐号。

添加新应用

依次点击 KML 通知枠管理 (Ad Slot Management) > 高速 叙述(媒体)。然后,点击 新制定(新建)

填写相应表单,然后点击登仍可以(注册)

记下应用 ID。

创建广告展示位置

点击您要添加广告展示位置的应用的 ID。然后,选择详情(详情)

点击 ⍛ト 附加(添加槽)

填写表单,完成后,点击(登仍可以)注册

记下广告位 ID。

Step 2: Set up Line demand in AdMob UI

קביעת הגדרות של תהליך בחירת הרשת (Mediation) ביחידת המודעות

Android

לקבלת הוראות, עיינו בשלב 2 במדריך עבור Android.

iOS

לקבלת הוראות, עיינו בשלב 2 במדריך iOS.

Step 3: Import the Line SDK and adapter

Download the latest version of Google Mobile Ads mediation plugin for Line from the download link in the Changelog and extract GoogleMobileAdsLineMediation.unitypackage from the zip file.

In your Unity project editor, select Assets > Import Package > Custom Package and find the GoogleMobileAdsLineMediation.unitypackage file you downloaded. Make sure that all the files are selected and click Import.

Then, select Assets > Play Services Resolver > Android Resolver > Force Resolve. The Unity Play Services Resolver library will perform dependency resolution from scratch and copy the declared dependencies into the Assets/Plugins/Android directory of your Unity app.

Step 4: Add required code

Android

No additional code is required for Line integration.

iOS

SKAdNetwork integration

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

Step 5: Test your implementation

הפעלת מודעות בדיקה

חשוב לרשום את מכשיר הבדיקה ל- AdMob

פועלים לפי ההוראות במסמכי התיעוד של במסמכי התיעוד של Line Android וב-iOS כדי להבין איך להפעיל מודעות בדיקה של Line.

אימות מודעות בדיקה

כדי לוודא שמוצגות לך מודעות לבדיקה מ-Line, צריך להפעיל בדיקה של מקור מודעות יחיד בכלי לבדיקת מודעות באמצעות Line (Waterfall) מקורות המודעות.

Optional steps

Network-specific parameters

The Line Unity mediation plugin supports the following additional request parameter which can be passed to the adapter through the LineMediationExtras class:

  • SetEnableAdSound(boolean): Specifies the default sound start state of banner, interstitial and rewarded ads.

Here's a code example of how to create an ad request that sets these parameters:

using GoogleMobileAds.Api;
using GoogleMobileAds.Mediation.Line.Api;
// ...

var adRequest = new AdRequest();
var lineExtras = new LineMediationExtras();
lineExtras.SetEnableAdSound(true);
adRequest.MediationExtras.Add(lineExtras);

Error codes

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

Android

com.line.ads
com.google.ads.mediation.line.LineMediationAdapter

iOS

GADMediationAdapterLine

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

Android

Error code Domain Reason
1-10 com.five_corp.ad Line SDK returned an SDK-specific error. See Line's documentation for more details.
101 com.google.ads.mediation.line Missing or invalid Application ID.
102 com.google.ads.mediation.line Missing or invalid Slot ID.
103 com.google.ads.mediation.line The requested ad size does not match a Line supported banner ad size.
104 com.google.ads.mediation.line Failed to load an interstitial or rewarded ad due to missing activity context.
105 com.google.ads.mediation.line Line SDK failed to show an interstitial or rewarded ad.
106 com.google.ads.mediation.line Failed to load a native ad due to missing assets.

iOS

Error code Domain Reason
1-10 Sent by Line SDK Line SDK returned an SDK-specific error. See Line's documentation for more details.
101 com.google.ads.mediation.line Invalid server parameters (e.g. Missing Application ID or Slot ID).
102 com.google.ads.mediation.line The requested ad size does not match a Line supported banner ad size.
103 com.google.ads.mediation.line Failed to load an information icon image asset in native ad.

Line Unity Mediation Plugin Changelog

Version 1.2.0

Version 1.1.2

Version 1.1.1

Version 1.1.0

Version 1.0.0