xamarin.ios - Getting Error when uploading .ipa file to application loader -
i developing xamarin ios app.i getting below error when upload .ipa file application loader.and dont have ipad pro in info.plist below:
how can solve please me.
i've encountered weird behaviour icon size related visual studio.
make sure have icon named icon-83.5@2x.png
in resources
folder , set build action bundleresource
.
now rebuild project. check in info.plist
file if have entry this: <string>icon-83.5@2x.png</string>
. if can submit ipa. if isn't in there, put in manually under cfbundleiconfiles
key , rebuild again.
<key>cfbundleiconfiles</key> <array> <string>icon-72@2x.png</string> <string>icon-72.png</string> <string>icon@2x.png</string> <string>icon.png</string> <string>icon-60@2x.png</string> <string>icon-76.png</string> <string>icon-76@2x.png</string> <string>icon-83.5@2x.png</string> <string>default-568h@2x.png</string> <string>icon-small-50@2x.png</string> <string>icon-small-50.png</string> <string>icon-small-40.png</string> <string>icon-small-40@2x.png</string> <string>icon-small.png</string> <string>icon-small@2x.png</string> </array>
double-check entry wasn't erased build process. if wasn't submit ipa store.
downside of is, have encountered it, entry gets deleted list build process. or more specifically, when change in project options influences info.plist
file.
another way go switch asset catalog.
Comments
Post a Comment