iOS Question how do i show ad's?

ilan

Expert
Licensed User
Longtime User
i tried the iadmob lib and in the log i can see that the device recived the ad but i dont see it on my device

what am i doing wrong??

this is my code:

B4X:
Private Sub Application_Start (Nav As NavigationController)
....

    adview1.Initialize("Ad","ca-app-pub-8081096xxxxxxxxxxxxxxxxxxx",Page1,adview1.SIZE_BANNER)
    adview1.Left = 0
    adview1.Top = Label4.Top
    adview1.LoadAd
    adview1.Alpha = 1
    adview1.Visible = True
    adview1.BringToFront
  
End Sub

Sub Ad_FailedToReceiveAd (ErrorCode As String) 'admob
    Log("failed: " & ErrorCode)
End Sub
Sub Ad_ReceiveAd 'admob
    Log("received")
End Sub
Sub Ad_AdScreenDismissed 'admob
    Log("screen dismissed")
End Sub
 
Last edited:

ilan

Expert
Licensed User
Longtime User
is it possible to show full screen ads with the iAdmob lib?? if not could you please put this option it's very important for us because banners dont make money only full screen... thank you in advance
 
Upvote 0
Top