Hi there
I’m using corona sdk 2015.2731 with xcode 7.1 and having this error:
ERROR ITMS-90062: "This bundle is invalid. The value for key CFBundleShortVersionString [1.0] in the Info.plist file must contain a higher version than that of the previously approved version [1.4.1]."
I’ve googled this issue and found some solutions but none of them worked.
The solutions I tried were:
- specifying CFBundleVersion and CFBundleShortVersionString in plist section of build.settings
(as suggested in https://forums.coronalabs.com/topic/50461-publish-app-failure/)
- remove CFBundleVersion and CFBundleShortVersionString and let corona sdk deal with it under the hood
(as suggested in https://forums.coronalabs.com/topic/59632-cfbundlesupportedplatforms-invalid-bundle-error/)
- tried the latest daily build 2744 with specifying CFBundleVersion and CFBundleShortVersionString in build.settings
the following is my complete build.setting file of the iOS section (with CFBundleVersion and CFBundleShortVersionString )
iphone = { plist = { CFBundleVersion = "1.4.3", CFBundleShortVersionString = "1.4.3", UIStatusBarHidden = false, UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend UIApplicationExitsOnSuspend = false, CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-60@3x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small.png", "Icon-Small@2x.png", "Icon-Small@3x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", }, FacebookAppID = "xxxxxxxxxxxxx", -- iOS app URL schemes: CFBundleURLTypes = { { CFBundleURLSchemes = { "fbxxxxxxxxxxxxx", -- replace XXXXXXXXX with your Facebook appId } } }, -- Whitelist Facebook Servers for Network Requests NSAppTransportSecurity = { 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", }, } },
I’ve used corona for a little while and everything worked fine before iOS9. This issue started to show up when I attempted to upgrade facebook plugin to ver 4. Hope that someone would help me out with this desperate issue T__T
P.H. Su