Fix iTunes Connect error reg. resource bundle

Xcode 7 shows an error when uploading an app to iTunes Connect due to a bug in the Info.plist of the resource bundle. The info.plist shouldn't contain a `CFBundleExecutable` value and the `CFBundlePackageType` should be `BNDL`.

Also removed other non needed entries.
This commit is contained in:
Andreas Linde
2015-08-20 10:28:16 +02:00
parent b791b7640b
commit dde39be0e6

View File

@@ -4,10 +4,6 @@
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>net.hockeyapp.sdk.resources.ios</string>
<key>CFBundleInfoDictionaryVersion</key>
@@ -15,7 +11,7 @@
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>${VERSION_STRING}</string>
<key>CFBundleSignature</key>
@@ -23,8 +19,6 @@
<key>CFBundleVersion</key>
<string>${BUILD_NUMBER}</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2012 HockeyApp, Bit Stadium GmbH. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string></string>
<string>Copyright © HockeyApp, Bit Stadium GmbH. All rights reserved.</string>
</dict>
</plist>