8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using AltStore for sideloading existing ipas. It would be great if there's a option to build .ipa using .app.
ipa
.ipa
.app
For anyone who found issue to build ipa, here's a simple script to build ipa:
#!/usr/bin/env bash set -eux APP_NAME=your_app_name_here xtool dev build mkdir -p xtool/ipa_temp/Payload cp -r xtool/$APP_NAME.app xtool/ipa_temp/Payload (cd xtool/ipa_temp && zip -r ../$APP_NAME.ipa Payload) cp ./xtool/$APP_NAME.ipa /mnt/z
The text was updated successfully, but these errors were encountered:
Implemented in 1.11.0!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I'm using AltStore for sideloading existing
ipa
s.It would be great if there's a option to build
.ipa
using.app
.For anyone who found issue to build ipa, here's a simple script to build ipa:
The text was updated successfully, but these errors were encountered: