English 中文(简体)
应用程序失败的代码符号校验, iPhone
原标题:Application failed codesign verification, iPhone

我用闪光 CS 5. 5 制作了iPhone iPhone 的应用程序, 在一个设备上测试了它( 它在设备上很好工作), 也是开发程序的成员 。 我试图在填充 iTunes 连接上的所有信息后将该应用程序上传到商店 。 然而, 当我试图通过应用程序装入器( Version 2. 5.2) 上传 ipa 文件时, 我不断遇到同样的错误 :

应用程序失败的代码符号校验。 签名无效, 包含被禁止的权益, 或者没有使用 iPhone 配送证书签名 。

我尝试过再次创建证书, 但仍然有相同的错误 。

感谢任何帮助:)

问题回答

这意味着您没有使用 iPhone 分发证书 , 该证书需要上传应用程序到应用程序仓库。 我猜您正在使用开发者证书 。

如何为 应用程序存储提交创建发行证书 : < a href=" http://soul with hmoballtechnology.in/2011/03/how-to-create- dismission-building- with.html" rel=“ nofollow noreferrer” > Steps 以创建毁损证书 。

Next time do a search you ll get plenty questions related to this topic. For example: Application failed codesign verification?

尝试再次使用您的发布证书, 并确保您在创建证书时引用的内容与您应用的 plist 文件相同 。

参考此链接 : < a href=" "http://www.idev101.com/code/didivision/building.html" rel="nofollow" > 建立用于分发的应用程序





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...