Skip to main content

Command Palette

Search for a command to run...

[SOLVED] Publishing Flutter iOS App using Beta OS

Published
1 min read
  1. Download released xcode version from AppStore

    At this point, you will have 2 XCode app, one is beta and one is released, the released version however cant be open

  1. Check xcode-select path with xcode-select -p and Switch to released path if its on beta like so:

    xcode-select -s /Applications/Xcode.app/Contents/Developer

  2. Build IPA file with flutter build ipa

  3. Now, open the archive package content and open the Info.plist file at

    Products/Applications/Runner -> Show Package Contents -> Info.plist

  4. Now, change BuildMachineOSBuild version to latest released MacOS version check it here: https://en.wikipedia.org/wiki/MacOS_version_history

  5. Saved the file then Distrubte the App by opening the archiver file.

  6. Should be fix.

1 views