Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invalid bundle OS type code while uploading build on itunes

Getting following error while uploading the app on AppStore.

I know the reason of second warning but don't know the reason of first error.

enter image description here

I have set the following parameters in my Plist -

1) Bundle OS Type code - APPL

2) Bundle Identifier - com.company.appname

3) Bundle display name - Appname

Anyone can help me.

like image 453
Girish Avatar asked Oct 29 '13 14:10

Girish


1 Answers

Make sure you have that in your .plist file:

<key>CFBundlePackageType</key>
<string>APPL</string>

If you have several targets (release / debug maybe) make sure you changed that in the configuration you are posting - potentially you have several .plist files in your project.

like image 182
Grzegorz Krukowski Avatar answered Sep 25 '22 01:09

Grzegorz Krukowski