XCode7打包上传报错

在XCode7上传应用时,上传失败遇到两个错误,提示如下:

[html] view plain copy

  1. ERROR ITMS-90535: "Unexpected CFBundleExecutable Key. The bundle at ‘xxxxx.app/TencentOpenApi_IOS_Bundle.bundle‘ does not contain a bundle executable. If this bundle intentionally does not contain an executable, consider removing the CFBundleExecutable key from its Info.plist and using a CFBundlePackageType of BNDL. If this bundle is part of a third-party framework, consider contacting the developer of the framework for an update to address this issue."

[html] view plain copy

  1. ERROR ITMS-90529: "Invalid package. Applications built with sdk 9.0 or later must be packaged as proper IPA files."

对于问题1:

修改Info.plist文件

找到这个Bundle,删除info.plist里边的Executable file这一项(删除蓝色箭头指向的那一个,注意是腾讯SDK里边的那个info.plist)

对于问题2:

按照错误提示原先上传的是.zip文件,现在需要上传 .ipa文件。将xcode编译的.app文件放入Payload文件夹内,压缩成.zip文件,修改其后缀为.ipa文件,即可。

时间: 2024-12-16 11:15:44

XCode7打包上传报错的相关文章

Struts2实现文件上传报错(四)

1.具体错误如下 2014-5-2 21:38:29 com.opensymphony.xwork2.util.logging.jdk.JdkLogger error 严重: Exception occurred during processing request: null java.lang.NullPointerException at com.you.file.upload.action.FileUploadAction.execute(FileUploadAction.java:56)

Struts2实现文件上传报错(一)

1.具体报错如下 2014-5-1 23:02:38 org.apache.catalina.core.StandardWrapperValve invoke 严重: Servlet.service() for servlet [jsp] in context with path [/UploadFile] threw exception [An exception occurred processing JSP page /file.jsp at line 28 25: <table> 26

Struts2实现文件上传报错(二)

编译Lua时,出现这样的错误: gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error: 查阅了一下,centOS上需要安装readline-devel ncurses-devel yum install readline-devel ncurses-devel 测试平台成功. [[email protected] lua-5.2.3]# make linux test cd src &

Struts2实现文件上传报错(三)

1.具体错误如下 usage: java org.apache.catalina.startup.Catalina [ -config {pathname} ] [ -nonaming ] { -help | start | stop } 2014-5-1 23:17:23 org.apache.catalina.core.AprLifecycleListener init 信息: Loaded APR based Apache Tomcat Native library 1.1.27 usin

文件上传报错:Unknown: file created in the system&#39;s temporary directory

nginx+php下文件上传成功,但会有错误提示如下: <b>Notice</b>:  Unknown: file created in the system's temporary directory in <b>Unknown</b> on line <b>0</b><br /> 网上搜索相关资料发现可能和php下临时文件存放目录配置有关,查看进入php.ini配置文件 配置文件搜索upload_tmp_dir,默认/

Rsync上传报错的问题

使用过程中遇到上传报以下错误: @ERROR: chdir failed rsync error: error starting client-server protocol (code 5) at main.c(1648) [sender=3.1.2] 搜索解决方案时没有此问题的解决办法,后来查看server端laog,发现有报错如下: rsync: chdir /cygdrive/D/***(此处为目录名)  failed 最后发现是文件夹的写入权限不够. 处理rsync上传报错问题,除了查

xcode7 打包上传至 app store

文章参考自: http://www.cnblogs.com/WayneLiu/p/4993391.html?utm_source=tuicool&utm_medium=referral http://blog.csdn.net/jeepxiaozi/article/details/43373243 在xcode7以前, 用户是不能直接真机调试的, 必须有开发者帐号才可以真机! xcode7出现后, 用户可以直接把app 安装在自己的手机上面. 真机调试步骤: 1=====>首先你得向appl

ajaxupload.js上传报错

相信大家在工作中经常用到文件上传的操作,因为我是搞前端的,所以这里主要是介绍ajax在前端中的操作.代码我省略的比较多,直接拿js那里的 $.ajaxFileUpload({ url:'www.coding/mobi/file/uploadSingleFile.html',//处理图片脚本 secureuri :false, fileElementId :'image2',//file控件id.就是input type="file" id="image2" data

asp.net编辑html文章上传报错[检测到潜在危险]

net framework2.0升级成4.0后,上传文章报错 解决方案 在web.config里添加<system.web><httpRuntime requestValidationMode="2.0" /></system.web>这个节点就ok拉 原文地址:https://www.cnblogs.com/wq555/p/9369817.html