Difference between revisions of "Event.AD FAILED"
From GiderosMobile
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | + | '''Available since:''' Gideros 2014.01<br/> | |
| − | ''' | + | '''Value:''' adFailed<br/> |
| − | ''' | + | '''Defined by:''' [[Ads]]<br/> |
| − | ''' | + | |
| − | === | + | === Description === |
| − | + | Failed to retrieve ad. | |
| − | === | + | |
| − | '''error''': (string) | + | *'''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/> | ||
| + | |||
| + | === 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 03: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)