0

I am trying to upload my app to. After tip Archive,it shows :Code Sign error: The default keychain doesn't have an identity matching the profile 'submitsearch' and identity 'iPhone Developer.

Which step may be wrong?

thanks

qwer789852
  • 1
  • 1
  • 2
  • It can be happen due to many reasons : You can check [my Answer](http://stackoverflow.com/questions/2108503/code-sign-error-the-identity-iphone-developer-doesnt-match-any-valid-certifi/12294275#12294275) in this Question. Hope It may be helpful to you. – Bhavin Dec 29 '12 at 12:31

3 Answers3

0

More than one thing can cause this problem:

  • Wrong profile/certificate used
  • Wrong export password
  • Expired certificate/profile
  • Apple changed something on their side

I find the best way to fix it is generating both certificate and profile again.

Dpedrinha
  • 3,741
  • 3
  • 38
  • 57
0

In my case it is due to not attaching key to p12 file.

for windows I simply run following command in openSSL:

pkcs12 -export -inkey privatekey.key -in ios_development.pem -out ios_development.p12

Its work for me.

-1

You can find the solution on this link :

Default keychain problem

You just have to make a difference between the Distribution Provisoning Profile and the Development Provisioning Profile.

The Main Difference between Distrib and Dev

Community
  • 1
  • 1
ChapMic
  • 26,954
  • 1
  • 21
  • 20
  • I am sure that I indeed get the Distribution Provisoning Profile . – qwer789852 Mar 08 '12 at 12:42
  • And so you added your device including the required provisioning profile in the organizer? – ChapMic Mar 08 '12 at 12:47
  • No,the distribution provisoning profile doesn't include the my device. I just want to submit my app to appstore, I followed this website. However,failed. http://www.weston-fl.com/blog/?p=2442 – qwer789852 Mar 08 '12 at 12:55