Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to give a ipa file to a tester. I first create a new Provisioning profile that is ad hoc . After I download it and I see in organizer xcode could not find a valid private key certificate pair for this profile in your keychain. I tried to arhive application and create ipa but it does not work for the other programmmer. Where should i add the test.mobileprovision? When I create this one I choose the developer for which i have certificate in my keychain Thanks , Raluca

share|improve this question

2 Answers

up vote 0 down vote accepted

xcode could not find a valid private key certificate pair for this profile in your keychain

seems to indicate that you have no Distribution certificate in your keychain.

To build ad-hoc applications, you will need a distribution certificate, as well as a distribution provisioning profile.

The guide in your Provisioning Portal explains step by step how to build an app for ad-hoc distribution:

https://developer.apple.com/ios/manage/distribution/index.action

Also here is good guide to help you build your app for ad-hoc.

share|improve this answer

One way:

  • add devices UDID, you want use for testing, to Apple Developer portal
  • modify Profile by adding devices, application identifiers and developers at Apple Developer Portal
  • download and install profile in your system by drop profile to Library section in organizer
  • install profile to all tester's devices
  • download developer keys and install it via Keychain Access application
  • sign your build with this keys
  • then archive your build and share it to ipa via organizer

Also you can use 3rd services, such as testflight or Beta builder to share your application between testers.

Testflight mush easier then manual sending builds to testers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.