# [SOLVED] Publishing Flutter iOS App using Beta OS 

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
    

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1725875499843/acff1e80-a622-4383-8ed7-d88be8dcc23a.png align="center")

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](http://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](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.
