美文网首页iOS上架相關iOS精品
真机调试、打包测试、发布程序常见问题(不断更新ing)

真机调试、打包测试、发布程序常见问题(不断更新ing)

作者: XDC | 来源:发表于2016-05-16 22:45 被阅读7135次

    -----01-----

    打包时出现的问题:

    Missing iOS Distribution signing identity for...
    
    01报错截图.png

    解决方案:http://www.jianshu.com/p/e16626eaaae4

    -----02-----

    打包上传到appstore时报错:

    This action could not be completed.Try again.(-22421)
    
    02报错截图.png

    解决方案:暂时请使用 -Application Loader上传app程序

    Application Loader使用说明:

    • 01:先导出ipa包
    • 和xcode发布应用一样(Product --> Archive)
    • 这里不点Upload to App Store,点Export,选择Save for iOS App Store Deployment,点Next按下来的步骤就能导出应该的.ipa文件了
    • 02:使用Application Loader上传
      • 打开:xcode工具栏-Xcode-Open Developer Tool-Application Loader
      • 首次使用提示登录苹果账号,选择交付您的应用,再点击选取(这里选取的是应用导出的.ipa文件,另外请在itunesconnect中提前设置好此版本信息)
      • 按照流程走即可上传成功

    -----03-----

    使用Application Loader上传app程序时报错:

    ERROR ITMS-90164 \ ERROR ITMS-90046
    
    03报错截图.png

    解决方案:发布的描述文件失效,重新edit发布描述文件并下载打开,然后重新打包程序(所以,在程序打包之前,请确定发布描述文件是有效的)

    -----04-----

    真机调试报错:

    The identity used to sign the executable is no longer valid
    

    解决方案:
    1.有可能是真机调试的描述文件失效了,重新edit下载即可
    2.如果真机调试描述文件未失效,可能是Provisioning Profile没选择好导致的,请在Build Settings中搜索signing,重新选择Provisioning Profile

    -----05-----

    打包发布到appstore时报错:

    An App ID with Identifier 'com.domainName.AppName' is not available. Please enter a different string.
    
    05报错截图.png

    解决方案:
    出现此问题的情况有很多,比如:APPID真的被占用了,那只能更换一个;
    另外比较多的可能是证书或者描述文件没搞好导致的,请去苹果开发者中心进行仔细配置;
    如果证书和描述文件确定没问题,依旧存在此问题,请看下是否使用的是xcode7.3版本,如果是,请更换xcode7.2重新打包,或许会有意想不到的结果

    -----06-----

    上架被拒:

    Your app uses background location services but does not clarify the purpose of its use in the location modal alert as required in the iOS Human Interface Guidelines.
    
    We've attached screenshot(s) for your reference.
    
    Next Steps
    Please reconfigure the UIAlertControllerStyleAlert in your code and specify the intended purpose of using background location in its message field.
    
    Resources
    For additional information and instructions on configuring and presenting an alert, see the Accessing User Data section of the iOS Human Interface Guidelines and the UIKit Framework Reference.
    

    原因:
    使用到了后台定位, 但又没告知用户使用后台定位的目的.

    解决方案:
    修改alertview的提示文字,告知用户使用定位的目的.
    在info.list中, NSLocationAlwaysUsageDescription 并且要配上详细说明文字但要简洁,告诉用户你为什么要访问他的位置!

    举例(美团外卖):

    美团外卖.png

    相关文章

      网友评论

        本文标题:真机调试、打包测试、发布程序常见问题(不断更新ing)

        本文链接:https://www.haomeiwen.com/subject/itabrttx.html