Can I transfer the iOS application in binary form to be signed by a third party for the app store?

As an independent iOS developer, I would like to allow my partners to sign the application and process the distribution. However, I cannot always transfer the entire project along with the source code (which may be confidential) to build them. Are there any steps in Xcode to make this possible?

I know that I can make the critical part of the application a separate library that will be associated with the entire project. This may be appropriate in some cases, but there are times when I want to avoid the extra workload associated with compatibility issues and code separation.

+4
source share
1 answer

It always seemed like something should be possible, but all the paths I tried have still not worked.

What we do is force the client to go through the .p12 file containing their private key and distribution certificate, as well as the profile of the App Store mobile application.

Then we create and sign the application and transfer it to the client to download them using the Application Loader. It works well.

+2
source

Source: https://habr.com/ru/post/1411565/


All Articles