THIS IS GIVING ME ERROR:
local revmob = require( “plugin.revmob” )
local function adListener( event )
if ( event.phase == “init” ) then – Successful initialization
print( event.isError )
end
end
– Initialize RevMob
revmob.init( adListener, { appId=“YOUR_APP_ID” } )
THIS IS THE ERROR: module ‘plugin_revmob’ not found:
In my build.settings…
[“plugin.revmob”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, android=true }
},
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android=true }
},
Any ideas why this is giving an error?