Could not run build/ios/iphoneos/Runner.app on 00008101-000544CA1410801E.
Try launching Xcode and selecting "Product > Run" to fix the problem:
open ios/Runner.xcworkspace
Error launching application on CIQMOB3.
I am building the flutter app for debug after i am updating the Xcode to 15 i am getting this issue|
Could not run build/ios/iphoneos/Runner.app on 00008101-000544CA1410801E.
Try launching Xcode and selecting "Product > Run" to fix the problem:
open ios/Runner.xcworkspace
Error launching application on CIQMOB3.
2
Answers
(open -a Xcode ios/Runner.xcworkspace)
Updated 11 Oct 2023 Solutions If you faced an issue after updating to Xcode 15 and can’t run your flutter app on iOS platform. Follow the solutions below.
Solution 1: Update Cocoapods to v1.13 (1.13 released a fix)
It seems to be an issue due to old Cocoapods version with Xcode 15. This is resolved in the CocoaPods version 1.13.0
You can follow these steps https://stackoverflow.com/a/77229768/6890699
Solution 2: Update Podfile (Flutter / Xcode 15)
However, it’s important to note that this should only be used as a temporary solution until a cocopods update comes out that fixes your Xcode version
For non-flutter users: Remove the below line from the script.
Additional fixes related: Update flutter libraries
If you use inAppWebview, you will get an error like this
Update inAppWebview to v5.8.0 release
Look for updates on the libraries you are using within your flutter project.
REMEMBER after using any of the above solutions
flutter clean
&&flutter pub get
rm Podfile.lock
&&rm -rf Pods/
pod install
&&pod update
flutter run
or build within your Xcode.