Hello, What you recommend for advertising platform not in the USA. iAd is ot seding ads outside the USA. I'v tried AdMob, ad it also seems not to work. Most of the time it fails to show up an and, ad when showing it shows only one ad again and again (some hotel booking) Any Idea?
Have you tried Google Mobile Ads?
I would recommend not sticking to one platform as such. You have a particular service fill in ads but if that doesn't have ads for you then, query some other platform, if that doesn't the next one.
# Pseudo-code
if GoogleMobileAds:
# Code to use Google Mobile Ads
else if iAd:
# Code to use iAd
else if AdMob:
# Code to use AdMob
else:
# Your own promotion or whatever is your last option
Edit: You may have to handle transitions and animations on your own. You may also have to create a new AdMobView
for every ad request you make. Following is a quote from this Google Groups discussion.
If you require feedback from the SDK for every ad request, we suggest that you create a new AdMobView for every ad request you make. If using this particular method, you will have to handle view transitions (and animations) between the two ads yourself, as well as cleaning up each AdMobView object when you no longer need it. If you require feedback from the SDK for every ad request, we suggest that you create a new AdMobView for every ad request you make. If using this particular method, you will have to handle view transitions (and animations) between the two ads yourself, as well as cleaning up each AdMobView object when you no longer need it.