xcode - How to solve the ipa is invalid issue ? ios -
I am using xcode 6. I want to validate my project, but I am receiving this error:
IPA is invalid, no payload directory is included in it
How can I solve this problem? I search the internet a lot, but there is no suggestion that helps me?
The way in which I opened a new project with the same identifier and made it valid to be successful!
Ensure that your application needs iPhone environments
, aka LSRequiresIPhoneOS
, the key in your application is info.plist
file true
. If not, then Xcode will create an iOS .ipa
in the OS X application folder.
Comments
Post a Comment