Hey guys,
Im having some issues with vungle…
The function call is not returning…
Also, the log on the device is silent.
Im on Corona Version 2014.2393 (2014.8.5)
Build for device (since this version cannot build for simulator for me) , iPhone 4S, IOS 7.1.1
Using a code from “coronaplugin-release-master”
[lua]
local provider = “vungle”
– replace with your own Vungle application ID
local appId = “myAppIdIsHere”
– load Corona ‘ads’ library
local ads = require “ads”
function functionAdListener( event )
– video ad downloaded and available
if event.type == “cachedAdAvailable” then
ads.show( “interstitial” )
– video ad displayed and then closed
elseif event.type == “adEnd” then
end
end
ads.init( provider, appId, functionAdListener )
[/lua]
Non of the events is being triggered in the Listener.
This is what I have in the build.settings in the settings section:
[lua]
plugins =
{
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”
},
[“CoronaProvider.ads.vungle”] =
{
publisherId = “com.vungle”,
},
[“facebook”] =
{
publisherId = “com.coronalabs”,
},
},
[/lua]
Any advices?
Roy.