zoukankan      html  css  js  c++  java
  • Xcode打包上传遇到的坑

    1.安装测试包的时候提示APIInternalError

    ①是否增加了测试设备的UUID

    ②是否使用adhoc证书打包

    2.打包错误:error: couldn't remove '/Users/xxx/Library/Developer/Xcode/DerivedData/xxxx/Build/Products/Debug-iphoneos/xxx.app/xxx.bundle' after command failed: Directory not empty  

    解决办法:Build Phases->Copy Bundle Resources将对应的xx.bundle 删除再重新添加

     

    3.上传提示:You must supply a CFBundleIdentifier for this request.

    解决方法:修改info.plist,增加或修改Bundle OS Type code 为APPL

     

    4.上传提示:ERROR ITMS-90023: "Missing required icon file. The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format for iOS versions >= 7.0."

    icon图片格式不够完整 解决方法:

    ①使用网址 http://www.atool.org/ios_logo.php,上传一张1024x1024的icon自动生成一系列尺寸的icon,然后拖放到xcode的icons文件夹下。

    ②修改info.plist配置对应尺寸的icon

    <key>CFBundleIconFile</key>
    <string>Icon-57.png</string>
    <key>CFBundleIconFiles</key>
    <array>
        <string>Icon-29</string>
        <string>Icon-40</string>
        <string>Icon-50</string>
        <string>Icon-57</string>
        <string>Icon-58</string>
        <string>Icon-72</string>
        <string>Icon-76</string>
        <string>Icon-80</string>
        <string>Icon-87</string>
        <string>Icon-100</string>
        <string>Icon-114</string>
        <string>Icon-120</string>
        <string>Icon-144</string>
        <string>Icon-152</string>
        <string>Icon-180</string>
    </array>
    <key>CFBundleIconFiles~ipad</key>
    <array>
        <string>Icon-29</string>
        <string>Icon-40</string>
        <string>Icon-50</string>
        <string>Icon-57</string>
        <string>Icon-58</string>
        <string>Icon-72</string>
        <string>Icon-76</string>
        <string>Icon-80</string>
        <string>Icon-87</string>
        <string>Icon-100</string>
        <string>Icon-114</string>
        <string>Icon-120</string>
        <string>Icon-144</string>
        <string>Icon-152</string>
        <string>Icon-180</string>
    </array>

    ③配置显示的图标

    ①使用网址http://www.appicon.build/生成配置文件

    ②进入配置文件夹进行替换

     

  • 相关阅读:
    [原创]Windows 7 下成功添加网络共享HP打印机
    [原创]PDFCreator自动保存及文件名带空格、后缀名丢失的解决方法(Windows 7通过)
    [原创]U872客户端“system.net.sockets.socketexception”的解决方法
    [转载]Windows 7默认共享无法访问
    [转载]使Excel不显示0值的三招
    [原创]使用空密码远程桌面连接
    分布式架构理论
    ffmpeg重要函数和结构体整理
    es~存储部分字段
    es~text与keyword的选择
  • 原文地址:https://www.cnblogs.com/chevin/p/8274738.html
Copyright © 2011-2022 走看看