hey
i am following all the steps to show ads on my app but it is not showing ads on mobile.here is the code i am using to display ads.if ads not showing because of app id then please tell me how to get one.
thanks
{{
local Library = require “CoronaLibrary”
– Create library
local lib = Library:new{ name=‘ads’, publisherId=‘com.coronalabs’ }
ads = require( “ads” )
local function adListener( event )
if ( event.isError ) then
–Failed to receive an ad
print “Error in ads”
end
end
ads.init( “admob”,“pub-6970275851831176” , adListener)
ads.show(“banner”, { x=display.contentWidth/2, y=display.contentHeight/2,appId=“ca-app-pub-6970275851831176/7384084441”, testMode=true})
}}