Admob Error: A plugin could not be downloaded

Error: A plugin could not be downloaded.

If you are sure you are requiring the correct plugin please contact support.

Corona 2014.2179
Mac version

Help please

Can you post your build.settings? 

– Supported values for orientation:

– portrait, portraitUpsideDown, landscapeLeft, landscapeRight

settings = {

    

    orientation = {

        default = “portrait”,

        supported = { “portrait”, }

    },

    plugins =

    {

        – key is the name passed to Lua’s ‘require()’

        [“CoronaProvider.ads.admob”] =

        {

            – required

            publisherId = “pub-XXXXXXXXXXXXXXXX”,

        },

    },     

}

settings =

{

        iphone =

        {

                plist =

                {

                         UIAppFonts = 

                        {

                            “fonts/kenpixel.ttf”,

                        },

                        --CFBundleIdentifier = “com.evastudio.candybooms”,

                        CFBundleIconFile = “Icon.png”,

                        CFBundleIconFiles = {

                            “Icon.png” , 

                            “Icon@2x.png” , 

                            “Icon-72.png” ,

                            “Icon-72@2x.png”,

                            “Icon-60.png”,

                            “Icon-60@2x.png”,

                            “Icon-Small-40.png”,

                            “Icon-Small-40@2x.png”,

                            “Icon-76.png”,

                            “Icon-76@2x.png”,

                        },

                        FacebookAppID = “XXXXXXXXX”,

                        UIApplicationExitsOnSuspend = false,    – must be false for single sign-on to work

                        CFBundleURLTypes =

                        {

                            {

                                CFBundleURLSchemes =

                                {

                                    “fbXXXXXXXXX”,    – replace XXXXXXXXX with your facebook appId

                                }

                            }

                        }

                },

        },

        plugins =

        {    

           

        },

            

        android =

        {    

            

               usesPermissions =

               {

                  “com.android.vending.CHECK_LICENSE”,

                  “com.android.vending.BILLING”,

                  “android.permission.INTERNET”,

                “android.permission.GET_ACCOUNTS”,

              },

        }

}

This needs to be:

   plugins =

    {

        – key is the name passed to Lua’s ‘require()’

        [“CoronaProvider.ads.admob”] =

        {

            – required

            publisherId = “com.coronalabs”,

        },

    },

Your AdMob publisher ID is used in the ad.init() call.  The publisherId here identifies where the plugin came from.

Thank you very much 

works

Can you post your build.settings? 

– Supported values for orientation:

– portrait, portraitUpsideDown, landscapeLeft, landscapeRight

settings = {

    

    orientation = {

        default = “portrait”,

        supported = { “portrait”, }

    },

    plugins =

    {

        – key is the name passed to Lua’s ‘require()’

        [“CoronaProvider.ads.admob”] =

        {

            – required

            publisherId = “pub-XXXXXXXXXXXXXXXX”,

        },

    },     

}

settings =

{

        iphone =

        {

                plist =

                {

                         UIAppFonts = 

                        {

                            “fonts/kenpixel.ttf”,

                        },

                        --CFBundleIdentifier = “com.evastudio.candybooms”,

                        CFBundleIconFile = “Icon.png”,

                        CFBundleIconFiles = {

                            “Icon.png” , 

                            “Icon@2x.png” , 

                            “Icon-72.png” ,

                            “Icon-72@2x.png”,

                            “Icon-60.png”,

                            “Icon-60@2x.png”,

                            “Icon-Small-40.png”,

                            “Icon-Small-40@2x.png”,

                            “Icon-76.png”,

                            “Icon-76@2x.png”,

                        },

                        FacebookAppID = “XXXXXXXXX”,

                        UIApplicationExitsOnSuspend = false,    – must be false for single sign-on to work

                        CFBundleURLTypes =

                        {

                            {

                                CFBundleURLSchemes =

                                {

                                    “fbXXXXXXXXX”,    – replace XXXXXXXXX with your facebook appId

                                }

                            }

                        }

                },

        },

        plugins =

        {    

           

        },

            

        android =

        {    

            

               usesPermissions =

               {

                  “com.android.vending.CHECK_LICENSE”,

                  “com.android.vending.BILLING”,

                  “android.permission.INTERNET”,

                “android.permission.GET_ACCOUNTS”,

              },

        }

}

This needs to be:

   plugins =

    {

        – key is the name passed to Lua’s ‘require()’

        [“CoronaProvider.ads.admob”] =

        {

            – required

            publisherId = “com.coronalabs”,

        },

    },

Your AdMob publisher ID is used in the ad.init() call.  The publisherId here identifies where the plugin came from.

Thank you very much 

works