Home > front end >  I cant run my flutter project after updating to xcode 14... keep saying Unable to read project '
I cant run my flutter project after updating to xcode 14... keep saying Unable to read project '

Time:12-01

Unable to get Xcode project information:
 2022-12-01 13:57:05.376 xcodebuild[71564:226197] Writing error result bundle to
 /var/folders/6g/w7cqd0s54c33_20mrl4v2q640000gn/T/ResultBundle_2022-01-12_13-57-0005.xcresult
xcodebuild: error: Unable to read project 'Runner.xcodeproj'.
        Reason: Project /Users/noel/Treegar/treegar-app/ios/Runner.xcodeproj cannot be opened because it is missing its
        project.pbxproj file.

i keep getting this error when ever i run flutter run or flutter build ios.

i dont know what to do... it works fine on android but not on ios.

ive updated xcode and flutter same problem

flutter doctor -v

UPdate cocoapod to latest version update flutter update xcode

CodePudding user response:

  • try flutter clear and pubget. or
  • try pod install or
  • if it is not harmfull for your code try to delete ios folder and recreate it in your project. may be this can work .

CodePudding user response:

This error message indicates that the Runner.xcodeproj file is missing or cannot be opened.

This file is part of the Xcode project for your Flutter app and is necessary for building and running the app on iOS.

To fix this issue, try the following steps:

  1. Make sure that you have the latest version of Xcode installed on your computer. You can check for updates and download the latest version of Xcode from the Mac App Store.

  2. Make sure that you have the latest version of the Flutter SDK installed on your computer. You can update Flutter by running the flutter upgrade command in a terminal window.

  3. Make sure that you have the latest version of CocoaPods installed on your computer. You can update CocoaPods by running the sudo gem install -n /usr/local/bin cocoapods command in a terminal window.

  4. Make sure that you have a valid Xcode project file for your Flutter app. If the Runner.xcodeproj file is missing, you can try running the flutter create . command in the root directory of your Flutter app to recreate the Xcode project files.

If the above steps do not help, you can try deleting the ios directory in your Flutter app and running the flutter create . command again to recreate the Xcode project files from scratch.

After trying these steps, try running the flutter run or flutter build ios command again to see if the issue has been resolved. If you continue to encounter errors, please provide more information about the specific steps you are taking and the full error message you are seeing.

  • Related