Gd day,
I developed an app with ads from Google Admob and the ads display successfully for 4 days. Then Yesterday and today no more ads is diaplaying. Somebody here know why?
Activity.LoadLayout("lyMain")
BannerAd.Initialize2("BannerAd", "ca-app-pub-7449308286288394/xxxxxxxxxx", BannerAd.SIZE_SMART_BANNER)
Dim height As Int
If GetDeviceLayoutValues.ApproximateScreenSize < 6 Then
'phones
If 100%x > 100%y Then height = 32dip Else height = 50dip
Else
'tablets
height = 90dip
End If
Activity.AddView(BannerAd, 0dip, 45dip, 100%x, height)
BannerAd.LoadAd
IAd.Initialize("iad", "ca-app-pub-7449308286288394/xxxxxxxxxx")
IAd.LoadAd
I think about complete Interstitial implementation (all events and code).
Google will detect as problem if your app request "too much" Interstitial ads. You need to make at least 60 sec between two Interstitial ads request (IAd.LoadAd), no matter is request successful or not.
Example of very very bad code, which will lead to ad suspension is this one:
You should do proper implementation and wait....
As it's look like, you will wait at least 45 days if your ads are suspended at first place.
Also check your admob account for policy violation.