Android Question More ads or paid promotional material than publisher-contentPolicy

nyinyi

Member
I am using this code in only one Activity, but I keep getting the “More ads or paid promotional material than publisher-content” policy violation. What could be causing this issue? Which part might be wrong? Please give me some advice.:
Sub Globals
  Dim IAD As InterstitialAd
End Sub

Sub Activity_Create(FirstTime As Boolean)

  IAD.Initialize("iad", Interstitial_Unit)
  IAD.LoadAd
 
End Sub
 
Sub Lucky_Click
  CallActivity=Lucky
  If IAD.IsInitialized And IAD.Ready   Then
    StartActivity(CallActivity)
    IAD.Show
  Else
    StartActivity(CallActivity)
  End If
  If IAD.IsInitialized Then IAD.LoadAd
End Sub
 

asales

Expert
Licensed User
Longtime User
This problem has not to do with the code.
If you show one ad every time that the user made an action or has more ads then content in the screen, you will get this message.
Check this link:
 
Upvote 0
Top