Hi,
I’m trying to implement banner and interstitial ads into my app.
I’m new to admob and implementing ads, so I have some very simple question.
For interstitial ads, do I have to have a timer to keep sending a new request to load it, assuming I want it to pop up every few seconds?
So since I’m testing, I’m using the same request for both the banner and interstitial ads like so.
GADRequest *request = [GADRequest request];
request.testDevices = @[ GAD_SIMULATOR_ID ];
Is it fine to use the same request for both the banner and interstitial ads, or do I need to create another request object?
For production, all I have to do is remove the request.testDevices = @[ GAD_SIMULATOR_ID ];
and I’m good to go?
Thanks