Invalid iPhone Application Binary - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T22:13:13Zhttp://stackoverflow.com/feeds/question/47941http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/47941/invalid-iphone-application-binary13Invalid iPhone Application BinaryKristopher Johnson2008-09-06T23:18:22Z2009-10-26T17:12:36Z
<p>I'm trying to upload an application to the iPhone App Store, but I get this error message from iTunes Connect:</p>
<blockquote>
<p>The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate.</p>
</blockquote>
<p>My guess is that it is not properly signed. I have downloaded my App Store distribution certficate, but I can't figure out how to "sign" my application with it. The SDK's documentation about code signing is not very helpful. (FWIW, I can install the app on my iPhone just fine using the development provisioning profile.)</p>
<p>However, it is possible that I screwed things up on a more basic level. Here's what I did to try to prepare it for upload:</p>
<ol>
<li>In Xcode, select the Device|Release target</li>
<li>Select the target and click the Info button. Change "Code Signing Identity" to "iPhone Distribution", and change "Code Signing Provisioning Profile" to my App Store distribution profile.</li>
<li>Build</li>
<li>Go to the directory where the built MyApp.app bundle is, control-click and choose "Compress" to create MyApp.zip</li>
<li>Upload MyApp.zip to the App Store via iTunes Connect (which resulted in the above error message).</li>
</ol>
<p>Can anybody give me any hints?</p>
<p><strong>Edit:</strong> Found someone with the same problem. Unfortunately, he won't tell us how he fixed it.</p>
<ul>
<li><a href="http://www.rhonabwy.com/wp/2008/07/18/seattlebus-diary-ongoing-update-saga/#comments" rel="nofollow">http://www.rhonabwy.com/wp/2008/07/18/seattlebus-diary-ongoing-update-saga/#comments</a></li>
<li><a href="http://www.rhonabwy.com/wp/2008/07/22/seattlebus-diary-update-is-pending-review/" rel="nofollow">http://www.rhonabwy.com/wp/2008/07/22/seattlebus-diary-update-is-pending-review/</a></li>
</ul>
<p>(Note: For general information on submitting iPhone applications to the App Store, see <a href="http://stackoverflow.com/questions/796482/steps-to-upload-an-iphone-application-to-the-appstore">Steps to upload an iPhone application to the AppStore</a>.)</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/48005#480050Answer by Kristopher Johnson for Invalid iPhone Application BinaryKristopher Johnson2008-09-07T01:13:50Z2008-12-01T18:02:00Z<p>Well, after repeating the steps several times, I was finally successful in uploading my app.</p>
<p>I don't know exactly what fixed it, but prior to the successful attempt, I closed Xcode and Firefox and restarted them. I guess one of those apps had some bad juju.</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/155355#1553557Answer by Mark Bessey for Invalid iPhone Application BinaryMark Bessey2008-09-30T22:20:05Z2009-02-03T19:20:06Z<p>It's been my experience that XCode occasionally gets confused about which signing certificate to use. I got into the habit of quitting and restarting XCode after any change to the code signing settings (and doing a clean build) to work around this problem.</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/796465#7964650Answer by Arun Thakkar for Invalid iPhone Application BinaryArun Thakkar2009-04-28T06:28:12Z2009-04-28T06:28:12Z<p>hi to All,</p>
<p>Hope you all are fine and in yours' best of moods today.</p>
<p>I want to know that have you find solution of your problem that you have written above?</p>
<p>I want to know the basic steps for uploading my iPhone application to AppStore.</p>
<p>I even don't know how to made provisioning profile using certificate also not knowing other settings i need to do to upload an application.</p>
<p>I have just made an application on my iMac using xcode-sdk v_2.2.1, now what i need to do for uploading it on apple store .. </p>
<p>I am member of that and I have distribution certificate also.</p>
<p>Sorry for my wrong English.</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/956502#9565021Answer by Eddie for Invalid iPhone Application BinaryEddie2009-06-05T15:28:43Z2009-06-05T15:28:43Z<p>I had the same issue and solved it this way:</p>
<p>The property certificates were installed on my development machine and mobileprovision.embedded was included in the distribution archive. After an hour or so of Googling and digging I found the source the error. Inside Xcode I had copied the Release configuration and created a new Distribution configuration and then changed the signing identity to my distribution certificate. However, even though it was updated in the GUI the project file was not updated correctly.</p>
<p>If you come across the same error, look in your [ProjectName].xcodeproj directory for the project.pbxproj file and open it in your favorite editor. Look for the Distribution section. My broken one looked like this:</p>
<pre><code>C384C90C0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CODE_SIGN_ENTITLEMENTS = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Distribution: Edward McCreary”;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “F00D3778-32B2-4550-9FCE-1A4090344400″;
SDKROOT = iphoneos2.2.1;
};
name = Distribution;
};
C384C90D0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CODE_SIGN_IDENTITY = “iPhone Developer: Edward McCreary”;
“CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Developer: Edward McCreary”;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = GenPass_Prefix.pch;
INFOPLIST_FILE = Info.plist;
PRODUCT_NAME = GenPass;
PROVISIONING_PROFILE = “DB12BCA7-FE72-42CA-9C2B-612F76619788″;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “DB12BCA7-FE72-42CA-9C2B-612F76619788″;
};
name = Distribution;
};
</code></pre>
<p>You can see the signing identity and provisioning profile are incorrect in the second section. Edit it to match the first section, rebuild, and you should be good to go. The final one looked like this:</p>
<pre><code>C384C90C0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CODE_SIGN_ENTITLEMENTS = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Distribution: Edward McCreary”;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “F00D3778-32B2-4550-9FCE-1A4090344400″;
SDKROOT = iphoneos2.2.1;
};
name = Distribution;
};
C384C90D0F9939FA00E76E41 /* Distribution */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CODE_SIGN_IDENTITY = “iPhone Distribution: Edward McCreary”;
“CODE_SIGN_IDENTITY[sdk=iphoneos*]” = “iPhone Distribution: Edward McCreary”;
COPY_PHASE_STRIP = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = GenPass_Prefix.pch;
INFOPLIST_FILE = Info.plist;
PRODUCT_NAME = GenPass;
PROVISIONING_PROFILE = “F00D3778-32B2-4550-9FCE-1A4090344400″;
“PROVISIONING_PROFILE[sdk=iphoneos*]” = “F00D3778-32B2-4550-9FCE-1A4090344400″;
};
name = Distribution;
};
</code></pre>
<p>guids changed to protect the innocent</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/1163229#11632291Answer by Aaron for Invalid iPhone Application BinaryAaron2009-07-22T05:36:30Z2009-07-22T05:36:30Z<p>Here's an issue I ran into: I added the binary to Subversion before uploading. Comparessing/zipping the binary then included the hidden .svn directories, which messed up the code signing.</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/1541447#15414472Answer by Jorge Bernal for Invalid iPhone Application BinaryJorge Bernal2009-10-09T01:48:28Z2009-10-09T01:48:28Z<p>Same problem, different solution.</p>
<p>In my case, I was compressing the file using <code>zip -r myapp.zip myapp.app</code>
Turns out, the zip command screwed the bundle. Compressing it from the finder made it work.</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/1557840#15578401Answer by shirikodama for Invalid iPhone Application Binaryshirikodama2009-10-13T01:40:49Z2009-10-13T01:40:49Z<p>I just wanted to mention that I too had the problem with zip from the command
line as well. The problem lies in the way it handles symlinks by default. Using:</p>
<p>zip -y -r myapp.zip myapp.app</p>
<p>Solved that problem.</p>
http://stackoverflow.com/questions/47941/invalid-iphone-application-binary/1626024#16260241Answer by Troy Sartain for Invalid iPhone Application BinaryTroy Sartain2009-10-26T17:12:36Z2009-10-26T17:12:36Z<p>I tried various things after reading various posts including those above. What finally worked for me was starting completely over! I deleted every certificate and provisioning profile associated with my app. </p>
<p>I recreated a new development certificate and a new distribution certificate. I downloaded the intermediate certificate again. Then I recreated both the development profile and the distribution profile.</p>
<p>After installing the three certificates (I noticed the distribution had both private and public keys this time) and the two provisioning profiles (my distribution profile didn't get flagged as not having a valid certificate!), everything worked.</p>
<p>Once I made the decision to revoke everything and just start over, it only took about 5 minutes to create the new stuff and re-install.</p>