I want to create a self-signed IPA using XCode for an iOS app I have written. I want to ship the ipa to customer who can sign the app and create an ipa using his code signature.
Can someone help me with this ?
P.S: I know how to codesign an application using certificate I have in my keychain.
You will have to send the source code to your customer, and he will need to build the app.If you don’t want him to have access to some/all of the source code, you could compile it as a dynamic library, and create a skeleton Xcode project that he can compile.
Edit: I found this question, with an answer. It looks like you can sign it with your own account, then send it to a customer to be re-signed by them using the
codesignbinary:How do we sign an iPhone application using someone else's Enterprise program?