Where can I find an iD test device for admob

Today I signed up for the Google Admob program. To integrate admob test ads, I need an iD test device.

GADRequest *request =[GADRequest request]; request.testDevice = @"[GAD_SIMULATOR_ID, @"MY_TEST_DEVICE_ID"]; [self.bannerView loadRequest:request]; 

Where can I get the identifier of the test device? I am browsing my account using Google Admob and I cannot find any test iD device.

+5
source share
1 answer

If you create and run your project on Xcode, the message below appears on the console. You can use this test device identifier.

 2015-01-10 09:11:32.593 VineUploader[662:60b] <Google> To get test ads on this device, call: request.testDevices = @[ @"944537259734b6f30367fad2271a8c6a" ]; 
+4
source

Source: https://habr.com/ru/post/1210777/


All Articles