How do we sign an iPhone application using someone else's Enterprise program?

我是研究僧i 提交于 2019-11-27 13:32:32

问题


We wrote an iPhone application that we want to sell to companies. The company is enrolled in the iOS Enterprise program.

How can we sign our application with their certificate? I know we can be added as a Team Member to their account, but is there any other way.

The company is a little uneasy about us generating a Certificate Request where one of their Admin members would actually create the profile. They are worried that we could sign other applications with this profile.

Is there any other way without us giving up the source to our application? In short, we wrote the application but want the company to sign the application using their Enterprise program and certificate. We also want to be conscious of their security concerns.


回答1:


You can generate the IPA binary with your own certificate (or unsigned) and ship it to the company who can then resign it with the codesign utility:

codesign -f -s (name of certificate) /path/to/application


来源:https://stackoverflow.com/questions/6686487/how-do-we-sign-an-iphone-application-using-someone-elses-enterprise-program

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!