0

This is the first time ever I upload an App and I'm getting crazy, I open Application Loader and follow the steps, I select an ipa file and then I get the following errors:

enter image description here

What I understand is that I'm missing some kind of certificate or something like this, how can I fix this? If I try to upload my app trough XCODE I can't because:

I go to my Archived app -> Distribute -> appstore -> and it says that IM mising some identities, so...

If someone please help me and explain the process of uploading the app

Thanks!

nbanic
  • 1,270
  • 1
  • 8
  • 11
Karlo A. López
  • 2,548
  • 3
  • 29
  • 56
  • 1
    Surely you can find an answer within the scores of existing questions on this error. And I'm sure you'll find plenty of help searching for the error on Google. – rmaddy Mar 18 '14 at 04:01
  • There are 2 errors. First, you sign your app with an incorrect certificate (should be Production Certificate); Second, seems your network has some problems ("Cannot resolve hostname"). Check your HOSTS file to locate any unusual entry. – Raptor Mar 18 '14 at 06:11

1 Answers1

-1

I had the same problem it drove me insane to fix it. Update your Xcode to 5.1. I added this to my build settings to plist

    MinimumOSVersion = "5.1.0",
    UIApplicationExitsOnSuspend = false,
    UIPrerenderedIcon = true,
    UIStatusBarHidden = true,
Boojum
  • 6,592
  • 1
  • 30
  • 34
palumboe1
  • 14
  • 1
  • 1
    This has nothing to do with the original posters errors why has it been marked as correct? The errors refer to codesigning certificates and network errors – JSA986 May 09 '14 at 10:54