Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/97.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/xcode/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
颤振IOS分发失败,出现错误_Ios_Xcode_Flutter_Deployment - Fatal编程技术网

颤振IOS分发失败,出现错误

颤振IOS分发失败,出现错误,ios,xcode,flutter,deployment,Ios,Xcode,Flutter,Deployment,flatter build ios成功运行,我在Assets.xcsets文件夹中有所有图标,但我仍不断收到此错误: 它说我的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 ver

flatter build ios成功运行,我在Assets.xcsets文件夹中有所有图标,但我仍不断收到此错误:

它说我的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>CFBundleDevelopmentRegion</key>
    <string>$(DEVELOPMENT_LANGUAGE)</string>
    <key>CFBundleDisplayName</key>
    <string>Sellet</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>Sellet</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>$(FLUTTER_BUILD_NAME)</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>$(FLUTTER_BUILD_NUMBER)</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>NSCameraUsageDescription</key>
    <string>Post Photos</string>
    <key>NSPhotoLibraryUsageDescription</key>
    <string>Post Photos</string>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    <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>
    <key>UIViewControllerBasedStatusBarAppearance</key>
    <false/>
</dict>
</plist>

CfBundledDevelopmentRegion
$(开发语言)
CbundleDisplayName
卖方
Cbundlexecutable
$(可执行文件名称)
CbundleIdentifier
$(产品\捆绑包\标识符)
CbundleInfo字典版本
6
CFBundleName
卖方
CbundlePackageType
应用
CbundleShortVersionString
$(颤振\u构建\u名称)
CFBundleSignature
????
循环流化床锅炉
$(颤振/建造/编号)
LSREQUIRESPHONEOS
NSCameraUsageDescription
张贴照片
NSPhotoLibraryUsageDescription
张贴照片
UILaunchStoryboardName
发射屏
UIMainstryBoardFile
主要
UI支持接口方向
UIInterfaceOrientationPortrait
UIInterface方向和左视图
UIInterfaceOrientationAndscapeRight
UI支持界面方向~ipad
UIInterfaceOrientationPortrait
UIInterfaceOrientation上下方向图
UIInterface方向和左视图
UIInterfaceOrientationAndscapeRight
UIViewControllerBasedStatusBarAppearance

我试着在xcode内部一个一个地添加图标文件,但是我得到了相同的错误。有人知道如何解决这个问题吗?请帮忙。谢谢

目标中的“应用图标源”是否设置为正确的资产组?另一件要检查的事情是,你的图标图像是否都是那些错误消息中指定的尺寸,并且是.png格式。我已经被困在同一个问题上一天了,你找到解决方案了吗?-我已经研究过类似问题的其他解决方案,并尝试读取所有文件,验证目标成员资格是否属于我的项目,确保图标链接到“常规”选项卡中的“应用图标”下,并在构建阶段添加所有文件。任何帮助都将不胜感激,谢谢!我使用flatter_launcher_icons包生成图标,然后编辑Contents.json以确保所有路径和大小都正确。然后我打开XCode,有一些未使用的图标被我删除了,它工作了。哇,终于让它工作了!谢谢我创建了一个新项目,并没有删除图标文件夹,而是用从在线图标生成器获得的生成的图标替换它,而是使用了仅替换图标的Flatter_launcher_图标包。目标中的“应用图标源”是否设置为正确的资产组?另一件要检查的事情是,你的图标图像是否都是那些错误消息中指定的尺寸,并且是.png格式。我已经被困在同一个问题上一天了,你找到解决方案了吗?-我已经研究过类似问题的其他解决方案,并尝试读取所有文件,验证目标成员资格是否属于我的项目,确保图标链接到“常规”选项卡中的“应用图标”下,并在构建阶段添加所有文件。任何帮助都将不胜感激,谢谢!我使用flatter_launcher_icons包生成图标,然后编辑Contents.json以确保所有路径和大小都正确。然后我打开XCode,有一些未使用的图标被我删除了,它工作了。哇,终于让它工作了!谢谢我创建了一个新项目,并没有删除图标文件夹,而是用从在线图标生成器获得的生成的图标替换它,而是使用了Flatter_launcher_图标包,它只替换了图标。