iOS app validation error: Missing plist key CFBundleShortVersionString

前端 未结 1 1839
春和景丽
春和景丽 2021-01-18 15:18

I built an iOS game with SpriteBuilder and cocos2d. When I attempt to submit it to the AppStore, I get the following error:

ERROR ITMS-9000: \"Missing plist key. The

1条回答
  •  时光说笑
    2021-01-18 15:49

    This is an easy fix. You just need to add the CFBundleShortVersionString key to your Info.plist file.

    Click your Info.plist file in your project. Right click and select "Add Row". Then paste in the string "CFBundleShortVersionString". It will automatically change it to read: "Bundle versions string, short".

    Then choose a value like 1.0 or whatever you want your version to be.

    Image of what your plist will look like after you add version

    0 讨论(0)
提交回复
热议问题