Difference between revisions of "Event.AD FAILED"

From GiderosMobile
 
Line 21: Line 21:
 
*'''TapForTap''': failed to receive ad
 
*'''TapForTap''': failed to receive ad
 
*'''TapJoy''': when ad failed
 
*'''TapJoy''': when ad failed
 +
*'''Unity''': failed to receive ad
 
*'''Vungle''': failed to receive video or no available ad
 
*'''Vungle''': failed to receive video or no available ad
  

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)