Reputation: 1
I am receiving the following error when uploading the .ipa
file generated by Visual Studio:
ERROR ITMS-900032: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIconFile': 'icon.png'
Is this a known issue? Is it as simple as adding the image and if so where? I have tried opening the project in XCode but I have no idea where to start.
Upvotes: 0
Views: 233
Reputation: 1480
With Cordova projects, you configure icons for all target platforms by placing them in a res/icons folder. See this article for more information:
https://taco.visualstudio.com/en-us/docs/configure-app/#VisualAssets
Upvotes: 1
Reputation: 89
You are, getting this error because your app is not able to find an App Icon.
To fix this you should go into the .xcassets folder that holds images, Click on the (+) button on bottom left, it has a drop down menu , click over the "App Icons & Launch Images"" and choose a "New App Icon" and then drag and drop the icon image there.
Upvotes: 0