I haven’t had any luck finding anything in the AdMob documentation, so perhaps whoever wrote the AdMob plugin handled this logic for us:
ads.show(“interstitial”) displays a banner ad on an iPhone. It displays a full screen interstitial ad on an iPad.
If I’m not in a situation (e.g. iPad) where an interstitial ad will be shown, I don’t want to call ads.show(“interstitial”) at all. I’d rather switch to RevMob and use their fullscreen ad (which works on smaller devices).
On iOS, the logic is easy: If I’m on an iPad, allow AdMob interstitial ads. Otherwise, skip trying and do something else.
What logic would I use on Android? What minimum screen dimensions are required for an Android device to be considered a “tablet” and show AdMob interstitials instead of banners only?