I am finishing up my first app which includes Admob. I have entered my ad unit ID and it is working perfect. I am currently on beta testing, so in order to see 'test' adds, I added my own device using the recommended method:
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice("xxxxxxxxxxxxxxxxxxxx").build();
I have 2 questions:
- For Beta testing, how can I prevent my testers to see the live ads without knowing their device IDs?
- For go-live, do I have to remove the
addTestDevice()
calls so I can see the real thing?
What is the usual procedure ?