web-dev-qa-db-ja.com

正しい形式ではないため、データを読み取ることができませんでした。エラー

エラーが発生しました。正しい形式ではないため、データを読み取ることができませんでした。今、SwiftでiPhoneアプリを作っています。アプリのInfo.plistにいくつかのコードを追加し、これらのコードを削除しました。しかし、アプリのInfo.plistを開きたいときに、このエラーが発生します。追加したすべてのコードを削除したため、理由がわかりません。フォーマットは本当に修正されていると思います。私の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>UILaunchStoryboardName</key>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</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>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
        <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>UISupportedInterfaceOrientations~ipad</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
</dict>
</plist>

どうすればこれを修正できますか?

5
user7523656

Info.plistファイルのキーを複製しました。最初に次のキーを削除してください

<key>UILaunchStoryboardName</key>

そしてそれは問題を解決します。

3
ldindu

私はフラッタープロジェクトを構築していましたが、問題がありませんでした<string> for key io.flutter.embedded_views_preview追加<string></string>私の問題を修正しました。info.plistはflutterによって作成されたものですが、更新しませんでした。これがflutterを使用している人に役立つことを願っています

0
Mohamed Nor