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

5

6

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

Snicker answered 12/9, 2015 at 23:25 Comment(4)
Similar question on Apple Dev Forum, forums.developer.apple.com/thread/15542Snicker
Looks like your are uploading a ZIP file. How did you generate this ?Subsistent
@NicolasBraun Application Loader needs a ZIP file to upload. It's generated by Mac's default compress function.Snicker
is this an iPhone app ? Application loader need's an IPA files which is generated XCode when exporting the Archive for App Store in the Organizer Panel. Have a look here to see how to generate the proper xarchive fileSubsistent
F
6

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.

Fictionist answered 25/9, 2015 at 12:51 Comment(0)
S
11
  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.
Subalternate answered 30/9, 2015 at 7:56 Comment(1)
Perfect, this is really best approach now.Bacteriolysis
F
6

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.

Fictionist answered 25/9, 2015 at 12:51 Comment(0)
F
2

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}”
Fundament answered 6/10, 2015 at 8:55 Comment(0)
R
1

I was having same problem all you need to do is to submit .ipa file and it will work like a charm.

Riorsson answered 1/10, 2015 at 15:23 Comment(0)
C
1

Simple Trick worked for me:
Archive and Export the build from organizer. Select “Save for iOS AppStore Deployment”. This will generate a ipa file that application loader accepts and uploads without any problem. enter image description here

Cleareyed answered 5/12, 2016 at 7:29 Comment(1)
Perfect! Thanks!Alexis

© 2022 - 2024 — McMap. All rights reserved.