Reputation: 663
if external developer is developing the app for one client that is going to distribute the app in house, how should the developer export the app, so that the client can than distribute it in house.
Does developer need private key of In House Distribution certificate of the client? Are there other solutions to export the app for the client without getting the private key of In House Dist. certificate?
Solution
I came out with following solution:
Upvotes: 2
Views: 1303
Reputation: 553
Actually, as an external developer, you don't need any of those certificate or signing identity stuff.
You can generate an unsigned ipa iOS application, send the unsigned ipa file to your client so that they can resign the application as they like.
You can refer to the following links:
Generating an unsigned IPA iOS application
and
How to Re-sign an iOS App from External Developers
Upvotes: 4