Here’s my build.settings. Can someone help me understand why the Corona SDK icon is showing for my app instead of the icon I loaded into my project’s folder.
Even my app is on Google Play and when it’s downloaded, the Corona SDK icon loads instead.
[lua]
settings =
{
iphone =
{
plist=
{
UIInterfaceOrientation = “UIInterfaceOrientationLandscapeRight”,
UISupportedInterfaceOrientations =
{
“UIInterfaceOrientationLandscapeRight”,
“UIInterfaceOrientationLandscapeLeft”
},
CoronaUseIOS6LandscapeOnlyWorkaround = true,
MinimumOSVersion=“4.3”,
CFBundleDisplayName = “Jam on Phonics”,
CFBundleName = “Jam on Phonics”,
UIApplicationExitsOnSuspend = false,
UIPrerenderedIcon=false,
UIStatusBarHidden=true,
CFBundleIconFile = “images/Icon-hdpi.png”,
CFBundleIconFiles =
{
“images/Icon-hdpi.png”,
“images/Icon-mdpi.png”,
“images/Icon-ldpi.png”,
“images/Icon-xhdpi.png”,
“images/Icon-xxhdpi.png”,
“images/Icon-76.png”,
“images/Icon-76@2x.png”,
“images/Icon-72@2x.png”,
“images/Icon-72.png”,
“images/Icon-Small-50.png”,
“images/Icon-Small-50@2x.png”,
“images/Icon-Small.png”,
“images/Icon-Small@2x.png”,
},
},
},
orientation =
{
default = “landscapeRight”,
supported = { “landscapeRight”, “landscapeLeft” },
},
android =
{
usesExpansionFile = true,
usesPermissions =
{
“android.permission.INTERNET”,
“com.android.vending.CHECK_LICENSE”,
“com.android.vending.BILLING”,
“android.permission.WRITE_EXTERNAL_STORAGE”
},
}
}
[/lua]
Yes, all my icons are in the project folder inside another folder called “images”
Yes, they’re all the correct sizes.