Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve ERROR ITMS-90529 on submit application compiled by Xcode 7 GM?

I had submitted the application via Application Loader 3.1. It shows "invalid package Applications built with SDK 9.0 or later must be packaged as proper IPA files."

enter image description here

I had received an Email on Sep 12 from Apple which allow to submit apps built by Xcode 7 GM.

enter image description here

like image 315
northtree Avatar asked Sep 12 '15 23:09

northtree


3 Answers

  1. make a folder with name Payload.
  2. put the compiled files into Payload folder.
  3. compress folder to Payload.zip file, than change to Payload.ipa.
like image 145
fannheyward Avatar answered Oct 15 '22 19:10

fannheyward


Ran into the same problem today. Turns out Application Loader 3.2 now requires the file to be .ipa only. It for some reason still accepts .zip files but will fail with this error. So just change the file extension to .ipa, assuming the contents were properly generated.

like image 27
Eric Chen Avatar answered Oct 15 '22 20:10

Eric Chen


Try convert your .APP to .IPA by command line:

/usr/bin/xcrun -sdk iphoneos PackageApplication -v "${RELEASE_BUILDDIR}/${APPLICATION_NAME}.app" -o "${BUILD_HISTORY_DIR}/${APPLICATION_NAME}.ipa" --sign "${DEVELOPER_NAME}" --embed "${PROVISONING_PROFILE}”
like image 33
CReaTuS Avatar answered Oct 15 '22 19:10

CReaTuS