Hello Guys, how are you all? Hope you all are fine. You might face Flutter: Could not find the built application bundle at build/ios/iphonesimulator/Runner.app as this error in a flutter. Here I come with all possible solutions for this error.
we are providing you all possible solutions to solve this error. let’s start this article without wasting your time.
How Flutter: Could not find the built application bundle at build/ios/iphonesimulator/Runner.app Error Occur ?
When I am run my flutter app in debug mode in android studio. Every time, regardless if I am running on a simulator or a real device, the debug console outputs
Could not find the built application bundle at build/ios/iphonesimulator/Runner.app.
or
Could not find the built application bundle at build/ios/iphoneos/Runner.app.
How to solve Could not find the built application bundle at build/ios/iphoneos/Runner.app in flutter ?
- How to solve Could not find the built application bundle at build/ios/iphoneos/Runner.app in flutter ?
to solve Could not find the built application bundle at build/ios/iphoneos/Runner.app in flutter The solution is might have updated the display name from Runner to your app name. So that Just Open your project in Xcode and put “Runner” back in the Display name. if you want to change the application then you can update into info.plist and change bundle name from there.
- Could not find the build application bundle at build/ios/iphoneos/Runner.app Occurs
to solve Could not find the built application bundle at build/ios/iphoneos/Runner.app in flutter The solution is might have updated the display name from Runner to your app name. So that Just Open your project in Xcode and put “Runner” back in the Display name. if you want to change the application then you can update into info.plist and change bundle name from there.
Solution 1
The solution is might have updated the display name from Runner to your app name. Follow below step to solve this error.
- Just open your project in Xcode
- Put “Runner” back in Display Name.
- if you want to change the application name please go into info.plist
- and change bundle name from there.
Solution 2
Maybe you changed name of the application via xcode? Then in
- ios/Runner.xcodeproj/project.pbxproj and find
- PRODUCT_NAME
- Then set
- PRODUCT_NAME = Runner
- Before
Run
useflutter clean
flutter run
Solution 3
- Change App name to Runner.
- If this doesn’t work then Select Runner
- Runner(Target)
- Build Settings
- Packaging
- “Product Name” change it to Runner.
- That will definitely work.
Solution 4
This may be caused by the value of PRODUCT_NAME in case it has a space character. Let remove all space characters in your PRODUCT_NAME value. Add CFBundleDisplayName key to the Info.plist if you want to config the app name (bellow the app icon). Exact Like Below.
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundleDisplayName</key>
<string>$(APP_DISPLAY_NAME)</string>
// xcconfig file
PRODUCT_NAME = Flutter_App
APP_DISPLAY_NAME = Flutter Dev
Summery
So it’s all About All possible solutions. Hope this above all solution helped you a lot. Comment below Your thoughts and your queries. Comment Below on your suggestion.
Check Out Below Article
- Exception in thread “main” java.lang.NoClassDefFoundError in flutter
- Target of URI doesn’t exist ‘package:flutter/material.dart’ in Visual Studio Code
- Flutter run error: You have not accepted the license agreements
- flutter doctor –android-licenses gives a java error
- The system UI isn’t responding in android emulator (Flutter)
Leave a Reply