Not appear own application icons

The application runs on iPad only. According to the table of icons, only need four.

The four icons are in png format, and the required size. They were stored in the same folder as all the other files. 

This is what I put in the file Build.setting, among other things. 

               plist = {

                        CFBundleIconFile = “Icon-76.png” 

                        CFBundleIconFiles = 

{

                        “Icon-76.png” 

                        “Icon-76@2x.png” 

                        “Icon-Small-40.png” 

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

                         }, 

}, 

Surely there is something I’m doing wrong, because the icons do not appear and change the generic icon is displayed.

You need comma’s after each of the file names;

                      CFBundleIconFile = “Icon-76.png”,

                        CFBundleIconFiles = 

{

                        “Icon-76.png” ,

                        “Icon-76@2x.png”,

                        “Icon-Small-40.png”,

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

                         },

Perfect, it works. Thanks ! (I can not make these mistakes). Thanks !

You need comma’s after each of the file names;

                      CFBundleIconFile = “Icon-76.png”,

                        CFBundleIconFiles = 

{

                        “Icon-76.png” ,

                        “Icon-76@2x.png”,

                        “Icon-Small-40.png”,

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

                         },

Perfect, it works. Thanks ! (I can not make these mistakes). Thanks !