Hello,
i am trying to do some testing on my ads implementation.
i got the device ID from - Device ID Finder for AdMob - on the play store - looks like a valid device ID.
i have added my device as test device to each request -
AdRequest request = new AdRequest.Builder().AddTestDevice("XXXXXXXXXXXXXXXX").Build();
if (request.TestDevices.Contains("XXXXXXXXXXX"))
Debug.Log("Request contains test device id");
i see its contained in the request
BUT the ads i am getting are REAL ads without any Test Ad label - i dont want to get my account banned.
in admob they say to do request.IsTestDevice - but this isnt part of the API in unity - so how can i confirm i am not violating anything.
when i look in the admob console - i do see the requests made and impressions made.
Thanks a lot
Alon