I am trying to put my build up for testing on TestFlightApp. In my previous version of xcode, I was able to view the \"share\" option after archiving, which I used to create the
You can use
Distribute...
and Save for Enterprise or Ad-Hoc Deployment
It is same as the old Share...
menu.
In Xcode 4.3.1 there is no "share" option in Archives tab of Organizer to create IPA.
Hence to create IPA just click the available "Distribute" option and select Method - "Save for Enterprise or Ad-Hoc Deployment" then we have an option to save the build in IPA format.
See the Attached Screen Shots,
thanks, Naveen Shan
Here is how I fixed it.
com.apple.developer.ubiquity-kvstore-identifier
is specifically for iCloud. See iOS Developer Library. So I used the following procedure:
At this point, TestFlight accepted the bundle and my testers were able to download!
I know an answer has been provided to this question, but looking at the comments (and my own request having sending me here also) it seems that help might be needed to those like @Yuchen or @Kent in the comments that only have two options in the distribute panel ("Submit to the iOS App Store" and "Export as Xcode Archive"), and can't see the "Save for Enterprise or Ad-Hoc Deployment" option.
If your target includes other targets (e.g. libraries), you should put the "Skip Install" flag to YES in the "sub" target Build settings. This will allow yourself to distribute your archive as an IPA file.
More information can be found on this StackOverflow answer.
Hope this will help, Thibault