ios - I could't upload my ipa in Application Loader and i get the below error -


i could't upload ipa in application loader , below error.

could not find cfbundlepackagetype" within info.plist; or package missing info.plist

when install ipa using itunes not getting error.

confused on how proceed this?

i think problem due way packaging wrong.

for instance

if zip payload causes above issue

and 1 of wrong way

zip -r -s 64 payload.zip payload/ mv payload.zip appname.ipa 

the right way use below or use xcrun

zip -r payload.zip payload/ mv payload.zip appname.ipa 

itunes have many validation finds out problem.

to validate ipa use altool

go terminal , use below script

/applications/xcode.app/contents/applications/application\ loader.app/contents/frameworks/itunessoftwareservice.framework/support/altool -v -f app.ipa -u itunesconnect@user.com -p password 

look inside script it'll solve problem

reference


Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -