The example here http://docs.coronalabs.com/daily/guide/monetization/adSupport/index.html#admob regarding AdMob causes a “PluginSync failed to download plugin” error.
[lua]settings =
{
plugins =
{
– key is the name passed to Lua’s ‘require()’
[“CoronaProvider.ads.AdMob”] =
{
– required
publisherId = “com.coronalabs”,
},
},
}[/lua]
I changed the “AdMob” to all lowercase and it worked fine. Not sure if this is intentional.
The doc should be updated with
[lua]settings =
{
plugins =
{
– key is the name passed to Lua’s ‘require()’
[" CoronaProvider.ads.admob"] =
{
– required
publisherId = “com.coronalabs”,
},
},
}[/lua]
Cheers.