Reputation: 658
One of my customers won't provide access to his Developer Portal & iTunes Connect credentials. With Xcode 5 we have used this flow to submit apps for review:
Now as I can see that Xcode 6 doesn't allow me to build IPA even for Ad-Hoc development without a developer login and password. Is there any way to generate an IPA without credentials?
Thanks in advance.
Upvotes: 8
Views: 7830
Reputation: 123
You should use Xcode6.1.1, it was supported. Choose "Use local signing assets" by accounts dropdown box.
Upvotes: 6
Reputation: 186
@frozen_lion you can still use xcodebuild to export ipa without Developer Account access:
xcodebuild -exportArchive -archivePath $projectname.xcarchive -exportPath $projectname -exportFormat ipa -exportProvisioningProfile “Provisioning Profile Name”
More details you can find in this article Using xcodebuild To Export a .ipa From an Archive
Upvotes: 6