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