我正在尝试在iTunes connect中提交我的应用程序,并且始终出现以下错误:
我使用MacOS High Sierra 10.13.3和Xcode 9.2(9C40b),我在AppIcon中使用上面的图标:
icon-20.png = 20x20
[email protected] = 40x40
[email protected] = 60,60
icon-29.png = 29x29
[email protected] = 58x58
[email protected] = 87x87
icon-40.png = 40x40
[email protected] = 80x80
[email protected] = 120x120
[email protected] = 120x120
[email protected] = 180x180
icon-76.png = 76x76
[email protected] = 152x152
[email protected] = 167x167
icon-1024.png = 1024x1024
这是我的content.json
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "icon-20.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "icon-29.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "icon-40.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "icon-76.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "iconxicon",
"idiom" : "ios-marketing",
"filename" : "icon-1024.png",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
我的应用程序的部署目标为10.0,而iosDeployment Target = 10.0
怎么了删除资产中的AppIcon文件夹并再次创建,此错误仍然存在,我是干净的项目(shift + cmd + k),正在创建新的档案文件(+20),没有任何办法解决此问题,并且我不知道是否有窍门或解决这个问题的方法。谢谢
最佳答案
我在link中找到了一些workarround,这不是解决方案,但现在可以使用。
我评论位于Pods / Targets支持文件/ Pods-MyApp中的Pods-MyApp-resources.sh文件,如下图所示:
之后,我清理项目,存档并上传。
关于ios - iTunes Store操作在Xcode 9中失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49173715/