Xcode构建项目,当构建成功时,我收到此消息" bundle的Info.plist不包含CFBundleVersion键或其值不是字符串"。那什么意识。有我的info.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key></key>
<string></string>
<key>Additional_Version_String</key>
<string>Updated on build</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIcons</key>
<dict/>
<key>CFBundleIcons~ipad</key>
<dict/>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>Commit_Short_Hash</key>
<string>Updated on build</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSContactsUsageDescription</key>
<string>Vialer needs access to your contacts to make calling to your contacts possible</string>
<key>NSMicrophoneUsageDescription</key>
<string>Vialer needs access to your microphone to make calling possible</string>
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
<string>fetch</string>
<string>remote-notification</string>
<string>voip</string>
</array>
<key>UIMainStoryboardFile</key>
<string>MainStoryboard</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UIRequiresPersistentWiFi</key>
<true/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleBlackTranslucent</string>
<key>UIStatusBarTintParameters</key>
<dict>
<key>UINavigationBar</key>
<dict>
<key>Style</key>
<string>UIBarStyleDefault</string>
<key>Translucent</key>
<true/>
</dict>
</dict>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
</dict>
</plist>
答案 0 :(得分:8)
我遵循了无处不在的解决方案,这些都是我最终对我有用的步骤:
flutter doctor
显示的所有相关问题:flutter clean
Runner.xcworkspace
项目答案 1 :(得分:4)
对我来说,解决方法是向目标添加内部版本号。 单击您的目标,转到“常规”,然后在“身份”下面是“构建”字段。
答案 2 :(得分:2)
我有同样的问题。
我通过“模拟器”菜单->“硬件”->“擦除所有内容和设置”对其进行了修复。
也许是模拟器错误。
答案 3 :(得分:1)
答案 4 :(得分:0)
只需将构建版本插入项目中
答案 5 :(得分:0)
我有 Big Sur 和 Xcode 12.5(非测试版),我创建了一个新的 SwiftUI 项目。
为了节省时间,我在项目导航器中拖动了一个包含一堆 json
文件的文件夹。该文件夹名为“Resources”,但我希望这不是问题。
在拖拽项目编译的文件夹之前。拥有新文件夹后,它将不再编译,并且会出现如下错误。我发现的最奇怪的错误。
解决方案,我一个一个添加文件,然后创建封闭文件夹,然后就可以了。而且是可复制的!我今天在这上面花了 30 分钟。幸运的是,它处于项目的最开始阶段,可以比较并查看何时会停止编译。
答案 6 :(得分:0)