Info.plist : 无法读取数据,因为它的格式不正确
Info.plist : the data couldn't be read because it isn't in the correct format
我试图在 iphone 上测试我的项目(bulidbox 游戏),
导出项目,在 xcode 打开,当我尝试 运行 它时,出现如下所示的错误:
error: couldn't parse contents of '/project/ios/BBplayer/Info.plist': The data couldn’t be read because it isn’t in the correct format.
我查看了过去的 Whosebug 问题,发现了大约 7 个相同问题的帖子,但仍然无法解决此问题
有什么办法可以解决这个问题吗?
xcode10;
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>CFBundleDisplayName</key>
<string>en</string>
<string>Ring & Wall</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIconName</key>
<string>AppIcon</string>
<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>CFBundleShortVersionString</key>
<string>1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UIRequiresFullScreen</key>
<true/>
<key>UIStatusBarHidden</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
您似乎一直在尝试将 Info.plist 编辑为源代码。不。你不知道怎么做,你可能会弄乱格式并使 Info.plist.
变砖
在这种情况下你犯了两个错误:
<key>CFBundleDisplayName</key>
<string>en</string>
<string>Ring & Wall</string>
1
一个 <key>
条目后不能有两个 <string>
条目。
2
您不能在 XML 中使用 & 符号。你是说 <string>Ring & Wall</string>
.
我再说一遍,none 如果您将手从原始 XML 上拿开,让 plist 编辑器完成它的工作,这种情况就会发生。
这一行有错误
<String>Ring & Wall</String>
删除 & 或更改行
环与墙
感谢@matt
我试图在 iphone 上测试我的项目(bulidbox 游戏), 导出项目,在 xcode 打开,当我尝试 运行 它时,出现如下所示的错误:
error: couldn't parse contents of '/project/ios/BBplayer/Info.plist': The data couldn’t be read because it isn’t in the correct format.
我查看了过去的 Whosebug 问题,发现了大约 7 个相同问题的帖子,但仍然无法解决此问题
有什么办法可以解决这个问题吗?
xcode10;
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>CFBundleDisplayName</key>
<string>en</string>
<string>Ring & Wall</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIconName</key>
<string>AppIcon</string>
<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>CFBundleShortVersionString</key>
<string>1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UIRequiresFullScreen</key>
<true/>
<key>UIStatusBarHidden</key>
<true/>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
您似乎一直在尝试将 Info.plist 编辑为源代码。不。你不知道怎么做,你可能会弄乱格式并使 Info.plist.
变砖在这种情况下你犯了两个错误:
<key>CFBundleDisplayName</key>
<string>en</string>
<string>Ring & Wall</string>
1
一个 <key>
条目后不能有两个 <string>
条目。
2
您不能在 XML 中使用 & 符号。你是说 <string>Ring & Wall</string>
.
我再说一遍,none 如果您将手从原始 XML 上拿开,让 plist 编辑器完成它的工作,这种情况就会发生。
这一行有错误
<String>Ring & Wall</String>
删除 & 或更改行 环与墙
感谢@matt