Skip to content

Instantly share code, notes, and snippets.

@MahefaAbel
Forked from monmonja/generate-ios.sh
Created January 24, 2023 12:43
Show Gist options
  • Save MahefaAbel/23d1f8ce2d45ec3136f84b6bf9709252 to your computer and use it in GitHub Desktop.
Save MahefaAbel/23d1f8ce2d45ec3136f84b6bf9709252 to your computer and use it in GitHub Desktop.
generate ios from command line
# download this file to your project folder and excute
# chmod +x generate-ios.sh
# then run using
# ./generate-ios.sh
# flutter build defaults to --release
flutter build ios
# make folder, add .app then zip it and rename it to .ipa
mkdir -p Payload
mv ./build/ios/iphoneos/Runner.app Payload
zip -r -y Payload.zip Payload/Runner.app
mv Payload.zip Payload.ipa
# the following are options, remove Payload folder
rm -Rf Payload
# open finder and manually find the .ipa and upload to diawi using chrome
open .
open -a "Google Chrome" https://www.diawi.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment