Difference between revisions of "Event.AD FAILED"
From GiderosMobile
(3 intermediate revisions by the same user not shown) | |||
Line 7: | Line 7: | ||
Failed to retrieve ad. | Failed to retrieve ad. | ||
− | === | + | *'''AdColony''': failed to receive video or no available ad |
+ | *'''Admob''': failed to receive ad | ||
+ | *'''Amazon''': when failed to load the ad | ||
+ | *'''AppLovin''': failed to receive ad | ||
+ | *'''Chartboost''': when failed to load ad | ||
+ | *'''HeyZap''': when failed to load ad | ||
+ | *'''iAds''': when failed to load | ||
+ | *'''InMobi''': when failed to load | ||
+ | *'''Millenial''': failed to receive ad | ||
+ | *'''MoPub''': failed to receive ad | ||
+ | *'''Revmob''': when ad failed | ||
+ | *'''Samsung AdHub''': when could not retrieve ad | ||
+ | *'''TapForTap''': failed to receive ad | ||
+ | *'''TapJoy''': when ad failed | ||
+ | *'''Unity''': failed to receive ad | ||
+ | *'''Vungle''': failed to receive video or no available ad | ||
+ | |||
+ | === Events === | ||
'''error''': (string) string describing what failed<br/> | '''error''': (string) string describing what failed<br/> | ||
+ | |||
+ | === Example === | ||
+ | <syntaxhighlight lang="lua"> | ||
+ | admob:addEventListener(Event.AD_FAILED, function(e) | ||
+ | print("AD_FAILED") | ||
+ | print(e.error) -- string | ||
+ | end) | ||
+ | </syntaxhighlight> | ||
{{Ads}} | {{Ads}} |
Latest revision as of 04:00, 16 February 2025
Available since: Gideros 2014.01
Value: adFailed
Defined by: Ads
Description
Failed to retrieve ad.
- AdColony: failed to receive video or no available ad
- Admob: failed to receive ad
- Amazon: when failed to load the ad
- AppLovin: failed to receive ad
- Chartboost: when failed to load ad
- HeyZap: when failed to load ad
- iAds: when failed to load
- InMobi: when failed to load
- Millenial: failed to receive ad
- MoPub: failed to receive ad
- Revmob: when ad failed
- Samsung AdHub: when could not retrieve ad
- TapForTap: failed to receive ad
- TapJoy: when ad failed
- Unity: failed to receive ad
- Vungle: failed to receive video or no available ad
Events
error: (string) string describing what failed
Example
admob:addEventListener(Event.AD_FAILED, function(e)
print("AD_FAILED")
print(e.error) -- string
end)