无法安装iOS应用

时间:2014-01-07 15:11:04

标签: ios iphone xcode install ipa

我正在尝试测试.ipa文件但是当我使用xCode安装它时,我收到以下错误:安装应用程序时请在选项字典中包含kCFBundleIdentifierKey。

我已经检查并重新检查了我的捆绑ID,它与我得到的ad hoc配置文件匹配,所以这里有什么问题?如果我用iTunes安装应用程序,应用程序图标会变灰,如果我按下应用程序打开它,它只会写“安装......”并继续这样说。

任何帮助表示赞赏,现在已经坚持了5个小时:(

继承人我的.plist:

<?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>GolfBox</string>
<key>CFBundleExecutable</key>
<string>GP Mobil</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIcons</key>
<dict>
    <key>CFBundlePrimaryIcon</key>
    <dict>
        <key>CFBundleIconFiles</key>
        <array>
            <string>icon.png</string>
            <string>icon@2x.png</string>
        </array>
    </dict>
</dict>
<key>CFBundleIdentifier</key>
<string>dk.golferportal.golfersDK</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>dk.golferportal.golfersDK</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.7.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>UIStatusBarHidden</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>

解决方案:不要在.ipa文件的文件名中使用“”(空格)

1 个答案:

答案 0 :(得分:0)

听起来您的应用没有捆绑标识符

这样做:

  1. 右键单击.plist文件
  2. 点击打开为 - &gt;源代码
  3. 将该代码复制并粘贴到您的帖子上,以便我们查看您的plist配置。可能缺少某些东西,需要添加一些内容,例如您的捆绑标识符密钥
  4. 一旦你更新了你的帖子并且我有机会看一下它,我可以更新我的帖子以帮助纠正你的情况

    <强>更新

    事实证明,由于文件名中找不到空格字符而导致问题发生。取出空间角色解决了这个问题。