Android Interstitial ads add test device?

后端 未结 3 1832
旧巷少年郎
旧巷少年郎 2021-01-05 22:27

You can easily add test devices with banner ads so you don\'t get banned by accidentally clicking on them. However I cannot find how to add test devices to interstitial ads.

相关标签:
3条回答
  • 2021-01-05 23:08

    Can you add test devices to these and if so, how?

    So here you go:

    // request test interstitial ads
            AdRequest adRequestInterstitial = new AdRequest.Builder()
                .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
                .addTestDevice(testDeviceId)
                .build();
    
    // request test banner ads
      AdRequest adRequestBanner = new AdRequest.Builder()
                .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
                .addTestDevice(testDeviceId)
                .build();
    
    0 讨论(0)
  • 2021-01-05 23:17

    I use the admob test ads id:

    1. For banner: ca-app-pub-3940256099942544/6300978111
    2. For Interstitial : ca-app-pub-3940256099942544/1033173712

    Refer: link

    0 讨论(0)
  • A small hack & its done.....! I have write few lines of code ,which will add every device as a test_device ,When you run your app in it .

    Just Write this code before loading the add:

    SharedPreferences var1 = context.getSharedPreferences("FBAdPrefs", 0);
            String i = u.b(UUID.randomUUID().toString());
            if (!var1.getString("deviceIdHash", "").equals(i))
            {
                var1.edit().putString("deviceIdHash", i).apply();
            }
    
            AdSettings.addTestDevice(i);
    

    It works for all type of facebook ad's ..!

    0 讨论(0)
提交回复
热议问题