Starting with Xcode 6, packaging requires a developer account to be added to the list of authorized accounts.
The reality is that as a company developer, it is rare to receive this award.
The way to solve it:
Package as usual with Xcode 6/7, generate the *.xcarchive file, and then we'll find a way to convert *.xcarchive to *.ipa file.
Short
SRC Code-----Xcode-----> *.xcarchive-----xcodebuild-----> *.ipa
*.xcarchive file conversion to *.ipa file specific practices:
At the command line, execute:
xcodebuild - Exportarchive -archivepath ${PROJECT_NAME< Span class= "Crayon-sy" >}.xcarchive \ -exportpath ${project_name} \ -exportformat IPA \ -exportprovisioningprofile ${profile_name} Parameters:Project_Name-project nameprofile_name-profile Filesuch as:${profile_name} is:
In addition, the *.xcarchive file generated by Xcode can be found in the following ways:
Xcode 6, 7 pack