Tuesday, 20 August 2013

Application Icon for corona sdk

iOS

For iOS, you must create a series of app icons for the iOS devices you plan to support. Apple recommends that you also create a set of small icons for spotlight search results andsettings. All icons should adhere to the standard iOS names and sizes listed below. Note that each icon has a definition for "normal" plus a Retina version appended with @2x. For detailed information on creating icons, please refer to the iOS Human Interface Guidelines.
FileSize (w×h)Purpose
Icon.png57 × 57Icon — iPhone
Icon@2x.png114 × 114Icon — Retina iPhone
Icon-72.png72 × 72Icon — iPad
Icon-72@2x.png144 × 144Icon — Retina iPad
Icon-Small-50.png50 × 50Search — iPad
Icon-Small-50@2x.png100 × 100Search — Retina iPad
Icon-Small.png29 × 29Search — iPhone  /  Settings — iPhone+iPad
Icon-Small@2x.png58 × 58Search — Retina iPhone  /  Settings — Retina iPhone+iPad
These files should be included in the project's base directory. Additionally, you must specify them in the CFBundleIconFiles table.
settings =
{
    iphone =
    {
        plist =
        {
            CFBundleIconFiles = {
            "Icon.png",
            "Icon@2x.png",
            "Icon-72.png",
            "Icon-72@2x.png",
            "Icon-Small-50.png",
            "Icon-Small-50@2x.png",
            "Icon-Small.png",
            "Icon-Small@2x.png",
            },
        }
    },
}



Android

For Android, icon files will be copied into the .apk during the build, if they are available in your project folder. These icons should adhere to the standard Android icon names and sizes listed below. For detailed information on creating icons, please refer to the Android Icon Design Guidelines.
FileSize (w×h)
Icon-xhdpi.png96 × 96
Icon-hdpi.png72 × 72
Icon-mdpi.png48 × 48
Icon-ldpi.png36 × 36

No comments:

Post a Comment