While I’ve tried following the XCAsset documentation, it refers to removing some tvOS directories for iOS submissions. Those directories don’t exist in the builds I’ve looked at.
My Corona build runs just fine, but when loading it to the App Store I get the following error(s)
1 package(s) were not uploaded because they had problems:
/var/folders/kd/w6sc1l310zgfjtv5pfzgym3r0000gn/T/B9D4085E-9960-4F7A-9482-0DE32B9DF2A9/1326443601.itmsp - Error Messages:
description length:688688
ERROR ITMS-90513: “Missing Info.plist Key. Your app’s Info.plist must contain the ‘CFBundleIcons.CFBundlePrimaryIcon’ key.”
ERROR ITMS-90513: “Missing Info.plist Key. Your app’s Info.plist must contain the ‘TVTopShelfImage.TVTopShelfPrimaryImage’ key.”
ERROR ITMS-90513: “Missing Info.plist Key. Your app’s Info.plist must contain the ‘TVTopShelfImage.TVTopShelfPrimaryImageWide’ key.”
The build.settings are as follows.
-- -- For more information on build.settings, see the Project Build Settings guide at: -- https://docs.coronalabs.com/guide/distribution/buildSettings -- settings = { orientation = { -- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight default = "landscapeLeft", supported = { "landscapeLeft", } }, -- -- Android section -- android = { usesPermissions = { "android.permission.INTERNET", }, }, -- -- iOS section -- iphone = { xcassets = "Images.xcassets", plist = { MinimumOSVersion = "8.0", NSAppTransportSecurity = { NSAllowsArbitraryLoads = true, }, UIStatusBarHidden = false, UILaunchStoryboardName = "LaunchScreen", }, }, -- -- Plugins section -- plugins = { ["plugin.musicStreaming"] = { publisherId = "tech.scotth", supportedPlatforms = { iphone=true, android=true } }, }, -- -- Project section -- excludeFiles = { -- Exclude unnecessary files for each platform ios = { "Icon.png", "Icon-\*dpi.png", }, android = { "Icon.png", "Icon-??.png", "Icon-???.png", "LaunchScreen.storyboardc", }, }, }
I’ve tried this on both build 3162 and 3184.
Any thoughts