iOS Question rewarded ad events not raised

fastlingo

Member
Licensed User
Longtime User
I am trying to implement rewarded ads with iadmob (ver 4.00)
the rewarded ad is initialized like this:

B4X:
Public Sub Initializead
    rewarded.Initialize("rew")
    Dim testdeviceid As String="c4c0570492ca3ccd8fde95d25728ad1e"
    Dim No As NativeObject = Me
    Dim oMobileAdsSharedInstance As NativeObject
    oMobileAdsSharedInstance.Initialize("GADMobileAds")
    oMobileAdsSharedInstance = oMobileAdsSharedInstance.RunMethod("sharedInstance", Null)
    No.RunMethod("setTestDeviceID::", Array(oMobileAdsSharedInstance, testdeviceid))
End Sub

None of the events are raised (rew_receivead, rew_failedtoreceivead) but the ad loads, because I am able to show the ad, so it definitely loads, but after vieweing it, again the rew_awarded(Item as object) event is not raised
 
Top