mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-05-05 12:07:28 +00:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user