build error: Could not find the built application bundle at build/ios/iphonesimulator/Runner.app

Could not find the built application bundle at build/ios/iphonesimulator/Runner.app
原创文章,侵权必究!如若转载,请务必联系作者,并标注来源!
totem_four_logo.jpg
:-

build error: Could not find the built application bundle at build/ios/iphonesimulator/Runner.app

1、问题复现:

After app rename,将iOS应用运行到“Simulator/iOS模拟器”和“iOS 真机”时,出现:“Could not find the built application bundle at build/ios/iphonesimulator/Runner.app”错误

2、问题解决:

  • 1.打开文件:ios->Runner.xcodeproj->project.pbxproj
  • 2.修改参数:在”project.pbxproj“文件内找到:‘Profile’、‘Release’、‘Debug’
    内“PRODUCT_NAME”属性,并将其值修改为“PRODUCT_NAME = "$(TARGET_NAME)";”
PRODUCT_NAME = "$(TARGET_NAME)";

flutter开发者项目示例:

flutter_app_sample 帮助flutter开发者更快入门、精进,避免不必要的技术坑。
如果您觉得此项目对您有所帮助,也可以"star"一下,我们得到您的鼓励后会更有动力持续推出更多有益于您的技术示例

特征:

  • 本项目是主打技术示例,所以涉及到的需求会比较少,涉及到的技术会比较多
  • 本项目是为flutter开发者专门打造的“Api demo app”
  • 本项目不仅包含flutter 各种widget组件,还包含开发包、插件,以及与各平台platforms交互、通信(Platform Channel)的技术示例。
  • 移步查看更多特征......

你可能感兴趣的:(build error: Could not find the built application bundle at build/ios/iphonesimulator/Runner.app)