thanks for reply, Rob Miracle.
I’ve removed Images.xcassets and copy-paste from Recourse Library again and nothing.
I have these icon related options in the build.settings
CFBundleIconFiles = {}, – Required!
UIPrerenderedIcon = true,
CFBundleIconFile = “Icon.png”,
I tried with and without CFBundleIconFile
here is my build.settings if needed
[spoiler][lua]
settings = {
splashScreen =
{
enable = false
},
orientation =
{
default = ‘portrait’,
supported =
{
‘portraitUpsideDown’
},
},
android = {
supportsScreens =
{
smallScreens = true,
normalScreens = true,
largeScreens = true,
xlargeScreens = true,
},
usesPermissions = {
‘android.permission.INTERNET’,
‘android.permission.ACCESS_NETWORK_STATE’,
“android.permission.RECEIVE_BOOT_COMPLETED”,
“com.android.vending.BILLING”,
“android.permission.ACCESS_COARSE_LOCATION”,
“android.permission.WRITE_EXTERNAL_STORAGE”
},
facebookAppId = “381887575532140”, – Replace XXXXXXXXXX with your Facebook App ID
},
plugins =
{
[“CoronaProvider.native.popup.social”] =
{
publisherId = “com.coronalabs”
},
[“plugin.appodeal”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { iphone=true, android=true }
},
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android=true }
},
[“plugin.notifications”] =
{
publisherId = “com.coronalabs”
},
–[“plugin.openssl”] = { publisherId = “com.coronalabs”, },
[“plugin.google.iap.v3”] =
{
publisherId = “com.coronalabs”,
supportedPlatforms = { android=true }
},
[“plugin.utf8”] =
{
publisherId = “com.coronalabs”
},
[“plugin.facebook.v4”] =
{
publisherId = “com.coronalabs”
},
},
iphone = {
plist = {
UILaunchStoryboardName = “LaunchScreen”,
UIAppFonts = {
–“Raleway.ttf”, “RalewayBold.ttf”, “Lora.ttf”
},
NSAppTransportSecurity={
NSAllowsArbitraryLoads=true,
},
CFBundleLocalizations = {
“en”, “ru”
},
UIApplicationExitsOnSuspend = false,
CFBundleShortVersionString=“1.5.6”,
CFBundleIconFiles = {}, – Required!
UIPrerenderedIcon = true,
CFBundleIconFile = “Icon.png”,
NSAppTransportSecurity =
{
NSAllowsArbitraryLoads=true,
NSExceptionDomains =
{
[“fbcdn.net”] =
{
NSIncludesSubdomains = true,
NSExceptionRequiresForwardSecrecy = false,
},
[“facebook.com”] =
{
NSIncludesSubdomains = true,
NSExceptionRequiresForwardSecrecy = false,
},
[“akamaihd.net”] =
{
NSIncludesSubdomains = true,
NSExceptionRequiresForwardSecrecy = false,
},
},
},
– Whitelist Facebook Apps
LSApplicationQueriesSchemes =
{
“fb”,
“fbapi20130214”,
“fbapi20130410”,
“fbapi20140410”,
“fbapi20140116”,
“fbapi20150313”,
“fbapi20150629”,
“fbauth”,
“fbauth2”,
“fb-messenger-api20140430”,
},
UIApplicationExitsOnSuspend = false,
FacebookAppID = “381887575532140”, --replace XXXXXXXXXX with your Facebook App ID
CFBundleURLTypes =
{
{ CFBundleURLSchemes = { “fb381887575532140”, } } --replace XXXXXXXXXX with your Facebook App ID
},
}
}
}
[/lua][/spoiler]