当前位置:首页 > 数据库 > 正文

flutter Could not find the built application bundle

2020-02-12 数据库

报错信息
Could not find the built application bundle at build/ios/iphoneos/Runner.app. Error launching application on xxx的 iPhone.

错误的原因是在xcode中修改了bundle Name字段的名字 默认是Runner,将bundle Name修改为Runner即可

修改plist文件

<key>CFBundleDisplayName</key>

<string>$(PRODUCT_NAME)</string>

<key>CFBundleExecutable</key>

<string>$(EXECUTABLE_NAME)</string>

<key>CFBundleIdentifier</key>

<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>

<key>CFBundleInfoDictionaryVersion</key>

<string>6.0</string>

<key>CFBundleName</key>

<string>VIPidea课堂</string>

  

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/SQL/14601.html