הפעלת הכלי לבדיקת מודעות
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
לפני שבודקים את השילוב של המודעות, צריך להפעיל את הכלי לבדיקת מודעות באפליקציה.
בדף הזה מוסבר איך להפעיל את הכלי לבדיקת מודעות
דרך תפריט הניפוי באגים ואיך להפעיל אותו
באמצעות תכנות.
דרישות מוקדמות
לפני שממשיכים, צריך:
- כדי ליצור חשבון Ad Manager, להגדיר את מכשיר הבדיקה, להפעיל את Google Mobile Ads SDK ולהתקין את הגרסה האחרונה, צריך להשלים את כל הפריטים בדרישות המוקדמות הראשוניות.
בחירת אפשרות הפעלה
אפשר להפעיל את הכלי לבדיקת מודעות בדרכים הבאות:
- כפתור ההפעלה מתפריט הניפוי באגים באפליקציה כדי להשתמש בתנועת היד שבחרתם בהגדרות של הכלי לבדיקת מודעות.
- באמצעות Google Mobile Ads SDK.
כדי להפעיל את הכלי לבדיקת מודעות דרך תפריט הניפוי באגים, לא צריך לבצע שינויים נוספים באפליקציה. פרטים נוספים זמינים במאמר בנושא בדיקת הצגת מודעות באפליקציה לנייד.
כך עושים את זה:
- מאתרים מודעה שמוצגת ברשת Ad Manager.
- לוחצים לחיצה ארוכה על המודעה כדי לפתוח את תפריט הניפוי באגים.
- בוחרים באפשרות פתיחת הכלי לבדיקת מודעות.
אם לא קישרתם את המכשיר, יכול להיות שתצטרכו להיכנס לחשבון Ad Manager.
בהגדרות הניפוי באגים, אפשר גם לבחור באפשרות הגדרות של הכלי לבדיקת מודעות ולבחור תנועה לפתיחת הכלי לבדיקת מודעות.
השקה פרוגרמטית
מפעילים את הכלי לבדיקת מודעות על ידי הרצת הפקודה הבאה:
Java
MobileAds.openAdInspector(
context,
new OnAdInspectorClosedListener() {
public void onAdInspectorClosed(@Nullable AdInspectorError error) {
// Error will be non-null if ad inspector closed due to an error.
}
});
Kotlin
MobileAds.openAdInspector(context) { error ->
// Error will be non-null if ad inspector closed due to an error.
}
השיטה הזו מתאימה למכשירי בדיקה שנרשמו באופן אוטומטי. פרטים נוספים זמינים במאמר בנושא הפעלת מכשירי בדיקה.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-08-31 (שעון UTC).
[null,null,["עדכון אחרון: 2025-08-31 (שעון UTC)."],[],[],null,["Select platform: [Android](/ad-manager/mobile-ads-sdk/android/ad-inspector/launch-ad-inspector \"View this page for the Android platform docs.\") [iOS](/ad-manager/mobile-ads-sdk/ios/ad-inspector/launch-ad-inspector \"View this page for the iOS platform docs.\") [Unity](/ad-manager/mobile-ads-sdk/unity/ad-inspector/launch-ad-inspector \"View this page for the Unity platform docs.\") [Flutter](/ad-manager/mobile-ads-sdk/flutter/ad-inspector/launch-ad-inspector \"View this page for the Flutter platform docs.\")\n\n\u003cbr /\u003e\n\nBefore you test your ad integration, you must launch ad inspector in your app.\nThis page covers how to launch ad inspector\nthrough the debug menu and how to launch\nprogrammatically.\n\nPrerequisites\n\nBefore you continue, do the following:\n\n- Complete all items in the initial [Prerequisites](/ad-manager/mobile-ads-sdk/android/ad-inspector#prerequisites) to create an Ad Manager account, set your test device, initialize Google Mobile Ads SDK, and install the latest version.\n\nChoose a launch option\n\nYou can launch ad inspector in the following ways:\n\n- The launch button from the debug menu within your app to use the gesture that you selected in the ad inspector settings.\n- Programmatically through the Google Mobile Ads SDK.\n\nLaunch using the debug menu\n\nTo launch ad inspector through the debug menu, you don't require further\nchanges on your app. For more details, see\n[Inspect mobile app ad delivery](//support.google.com/admanager/answer/7180401).\n\nComplete the following steps:\n\n1. Find an ad served in your Ad Manager network.\n2. Touch and hold the ad to open the debug menu.\n3. Select **Open ad inspector**.\n\nIf you didn't [link your device](/ad-manager/mobile-ads-sdk/android/debug#link_your_device), you might\nneed to sign in to your Ad Manager account.\n\nFrom the debug settings, you can also select **Ad inspector settings** and\nchoose a gesture that can open ad inspector.\n\nLaunch programmatically\n\nLaunch ad inspector by running the following: \n\nJava \n\n MobileAds.openAdInspector(\n context,\n new OnAdInspectorClosedListener() {\n public void onAdInspectorClosed(@Nullable AdInspectorError error) {\n // Error will be non-null if ad inspector closed due to an error.\n }\n }); \n https://github.com/googleads/googleads-mobile-android-examples/blob/ccc290a583d7f552bdcf81ea76adc05beaa43f0b/java/advanced/APIDemo/app/src/main/java/com/google/android/gms/snippets/AdInspectorSnippets.java#L28-L34\n\nKotlin \n\n MobileAds.openAdInspector(context) { error -\u003e\n // Error will be non-null if ad inspector closed due to an error.\n } \n https://github.com/googleads/googleads-mobile-android-examples/blob/ccc290a583d7f552bdcf81ea76adc05beaa43f0b/kotlin/advanced/APIDemo/app/src/main/java/com/google/android/gms/snippets/AdInspectorSnippets.kt#L25-L27\n\nThis method works for test devices registered programmatically. For more details, see\n[Enable test devices](/ad-manager/mobile-ads-sdk/android/test-ads#enable_test_devices)."]]