Replies: 1 comment 11 replies
-
Briefcase doesn't currently generate IPA files as an output format. It might be possible to add IPA export, but we'd need to investigate the command line option to If you want to submit an app to the App Store, you don't need to explicitly create an IPA file; we've provided instructions in the Breifcase docs. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
rm -rf appName
mkdir appName
mkdir appName/Payload
cp -r appName.app appName/Payload/appName.app
cp Icon.png appName/iTunesArtwork
cd appName
zip -r appName.ipa Payload iTunesArtwork
exit 0
The. ipa built using this method displays "structural system mismatch" after installation
Beta Was this translation helpful? Give feedback.
All reactions