该软件包不包含info.plist xcode上传问题

时间:2015-06-21 10:10:56

标签: ios xcode6 info.plist

我尝试将旧版ios应用上传到应用商店。 我试过xcode6.3.2和applicationloader3.1 每次我收到错误

  

"包装上不包含info.plist"

我可以在项目中看到info.plist,而不是' redded'进行。

在构建设置中,我有$(SRCROOT)/myApp-Info.plist 我可以在项目中看到myApp-Info.plist。

在目标的身份部分 - > general - 两个版本都设置为2.4

我无法发布信息图片,plist:raw form

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>English</string>
    <key>CFBundleDisplayName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundleExecutable</key>
    <string>${EXECUTABLE_NAME}</string>
    <key>CFBundleIconFiles</key>
    <array>
        <string>icon.png</string>
        <string>icon@2x.png</string>
        <string>icon-small.png</string>
        <string>icon-small@2x.png</string>
        <string>iconipadrtn.png</string>
        <string>iconipad.png</string>
    </array>
    <key>CFBundleIcons</key>
    <dict/>
    <key>CFBundleIcons~ipad</key>
    <dict/>
    <key>CFBundleIdentifier</key>
    <string>com.example.myApp</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundleShortVersionString</key>
    <string>2.4</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>2.4</string>
    <key>LSApplicationCategoryType</key>
    <string>public.app-category.medical</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>NSMainNibFile</key>
    <string>MainWindow</string>
    <key>NSMainNibFile~ipad</key>
    <string>MainWindow-iPad</string>
    <key>UIPrerenderedIcon</key>
    <true/>
    <key>UIRequiredDeviceCapabilities</key>
    <array/>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
</dict>
</plist>

非常感谢一些帮助 - 谢谢!

0 个答案:

没有答案