שילוב של Tencent YLH עם תהליך בחירת הרשת (Mediation)
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
מדריך זה מיועד לבעלי אתרים שמעוניינים להשתמש בגישור של Google לנייד באמצעות Tencent YLH. נסביר איך להגדיר מתאם לתהליך בחירת הרשת באפליקציה הנוכחית ולהגדיר פרמטרים נוספים של בקשות.
דרישות מוקדמות
פריימרים שימושיים
המאמרים הבאים במרכז העזרה מספקים מידע רקע על גישור:
כולל מתאם רשת ו-SDK
צריך להוריד את ה-SDK והמתאם של Tencent YLH מהקישורים שמופיעים למעלה.
ערכות SDK מסוימות כבר כוללות מתאם של Google Mobile Ads, וערכות SDK אחרות מציעות אותו כקובץ נפרד. כדאי לעיין בהוראות השילוב או ב-README שמצורף לכל מתאם.
כוללים את ערכות ה-SDK וקובצי המתאמים של הרשתות שמשתתפות בתהליך בחירת הרשת כתלות בקובץ build.gradle
ברמת האפליקציה ב-Android וב-Podfile
ב-iOS.
הכללה של הגדרות הרשת
- Android
- בחלק מרשתות המודעות צריך להוסיף הגדרות נוספות לקובץ
AndroidManifest.xml
. אפשר לבצע את השינויים האלה ב-AndroidManifest.xml
שבתוך הספרייה android/app/src/main
.
- iOS
- פותחים את
ios/Runner.xcworkspace
של הפרויקט ב-Xcode וכוללים את כל ה-frameworks, דגלי מהדר (compiler) או דגלי מקשר שנדרשים ברשתות שבחרתם.
האפליקציה שלכם לא צריכה לקרוא לקוד של רשת מודעות של צד שלישי באופן ישיר. ה-Google Mobile Ads SDK מקיים אינטראקציה עם המתאם של הרשת בתהליך בחירת הרשת כדי לאחזר בשמכם מודעות של צד שלישי.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-08-21 (שעון UTC).
[null,null,["עדכון אחרון: 2025-08-21 (שעון UTC)."],[[["\u003cp\u003eThis guide helps publishers integrate Tencent YLH ads into their apps using Google Mobile Ads Mediation.\u003c/p\u003e\n"],["\u003cp\u003eYou'll need an AdMob account, an ad unit with mediation line items, and the Google Mobile Ads SDK in your app as prerequisites.\u003c/p\u003e\n"],["\u003cp\u003eThe guide provides links to download the Tencent YLH SDK and adapter, and instructions for integrating them into your Android or iOS app.\u003c/p\u003e\n"],["\u003cp\u003eIt's important to include necessary configurations in your app's \u003ccode\u003eAndroidManifest.xml\u003c/code\u003e or Xcode project for the ad network to function properly.\u003c/p\u003e\n"],["\u003cp\u003eThe Google Mobile Ads SDK handles communication with the Tencent YLH adapter, so your app doesn't need to directly interact with the third-party ad network.\u003c/p\u003e\n"]]],["Publishers using Google Mobile Ads Mediation with Tencent YLH must download the Tencent YLH SDK and adapter. Integrate these as dependencies in the app's build files (build.gradle for Android, Podfile for iOS). For Android, configure `AndroidManifest.xml` with any required network-specific settings. For iOS, add necessary frameworks, flags in Xcode. Ensure you have an AdMob account with configured mediation and the Google Mobile Ads SDK integrated into your app. The Google Mobile Ads SDK handles third-party ad fetching.\n"],null,["# Integrating Tencent YLH with Mediation\n\nThis guide is intended for publishers who are interested in using Google\nMobile Ads Mediation with **Tencent YLH**. It walks you through getting a\nmediation adapter set up with your current app and setting up additional\nrequest parameters.\n\n| Tencent YLH Resources |\n|-------------------------------------------------------------------------------------------------|\n| [Documentation](//e.qq.com/dev/#index) |\n| [SDK](//imgcache.qq.com/qzone/biz/gdt/dev/sdk/android/release/GDT_Android_SDK.zip) |\n| [Adapter](//imgcache.qq.com/qzone/biz/gdt/dev/sdk/android/release/GDT_Android_ADMobAdapter.zip) |\n| [Customer support](mailto:GDTLM@tencent.com) |\n\nPrerequisites\n-------------\n\n- An app with the Google Mobile Ads SDK integrated. (If you don't have one, see\n [Get Started](/admob/flutter/quick-start).)\n\n- An AdMob account and [an ad unit configured with mediation line\n items](//support.google.com/admob/answer/3124703).\n\nHelpful primers\n---------------\n\nThe following Help Center articles provide background information on mediation:\n\n- [About AdMob Mediation](//support.google.com/admob/answer/3063564)\n- [Set up AdMob Mediation](//support.google.com/admob/answer/3124703)\n- [Optimize AdMob Network](//support.google.com/admob/answer/3534471)\n\nInclude network adapter and SDK\n-------------------------------\n\nDownload the SDK and adapter for Tencent YLH from links provided above.\nSome SDKs already include a Google Mobile Ads adapter,\nwhile others offer it as a separate file. See the integration\ninstructions or README that's included with each adapter.\n\nInclude the mediated networks' SDKs and adapter files as dependencies in your\napp level `build.gradle` file on Android and `Podfile` on iOS.\n\nInclude network configurations\n------------------------------\n\nAndroid\n: Some ad networks require extra configurations to be added to your\n `AndroidManifest.xml` file. You can make these modifications to the\n `AndroidManifest.xml` inside the `android/app/src/main` directory.\n\niOS\n: Open your project's `ios/Runner.xcworkspace` in Xcode, and include any\n frameworks, compiler flags, or linker flags that your chosen networks require.\n\nYour app need not call any third-party ad network code directly; the Google\nMobile Ads SDK interacts with the mediated network's adapter to fetch\nthird-party ads on your behalf."]]