I was using ads.isAdAvailable() and it worked great on iOS but not for Android
I tried all of the following but I cannot get anything to work on Andoid
-
CoronaProvider.ads.vungle.isAdAvailable()
-
ads.vungle.isAdAvailable()
3) vungle.isAdAvailable()
- ads.isAdAvailable()
Here is my code: it always says ads are available, even when they are not
local function listener( event )
if CoronaProvider.ads.vungle.isAdAvailable() then
statusText.text = “ADS are available”
statusText:setTextColor (113, 255, 103 )
else
statusText.text = “ADS are NOT available”
statusText:setTextColor ( 255, 49, 95 )
end
end
timer.performWithDelay( 1000, listener,0 )
it stinks because it works so nicely on iOS I would love to be able to use this on android
Thank you for any help on this issue