1

anyone know to generate Production IPA without developer account in detail??
Client doesn't want to share Developer account detail with me, he gave me just provisioning profile and certificate

Using only profile and certificate can we generate IPA ??

Mitul Bhadeshiya
  • 1,280
  • 1
  • 12
  • 32
  • The client doesn't have to share their account detail with you... they just have to make you a Team Member with Admin role. See this post: https://stackoverflow.com/a/35054038/6257435 – DonMag Oct 14 '17 at 12:25
  • You should have the P12, Provisioning profile and CErt for that profile . Use that will be sufficient to make an IPA. Or else use xcbuild tools from xcode to do without logging in to Dev account . – codelover Dec 08 '17 at 04:29

3 Answers3

1

In order to create a signed distribution build, your client would need to provide you with 3 things: the provisioning profile, the distribution certificate, and the private key associated with the distribution certificate. With those 3 files, you would be able to set up your Xcode project for manual code signing. Select the provisioning profile the client provided and then do a distribution build.

Alternatively, you can provide the client an ipa that you have signed and have them resign it themselves, but to make it easier you would want to use a tool like iResign.

Finally, most companies who have a 3rd party do their development will add you as an admin role on their Apple developer account. It would allow you to use Xcode's automatic code signing to create the build. You would simply change the team in your project settings to be the client's account, and Xcode would do the rest.

wottle
  • 13,095
  • 4
  • 27
  • 68
-1

I think all what you need is those 2, provisioning profile & certificate. You can import your provisioning profile on Xcode and then it automatically links the associated signing certificate for you.

Naveen
  • 494
  • 1
  • 4
  • 18
  • Yes i know we can import certificates but is there any way to generate production build (that i can give to client to upload in itunes store) ??? – Mitul Bhadeshiya Oct 15 '17 at 11:32
  • Yes you can. Make sure you have the production distribution certificate and App Store provisioning profile. So once you archive the product you can get the IPA and share it with the client.. After sharing the ipa, we have 2 options to upload the IPA either through xcode (or) application loader thats your client headache. – Naveen Oct 15 '17 at 14:17
  • You would also need the private key. without it, you can't use the certificate to sign the binary. – wottle Oct 16 '17 at 15:17
-2

As I know , I hope it is not possible. You have to configure your system with that developer account then only you can get IPA .But I am not sur about it.