Wissej
Wissej

Reputation: 331

Updating a transfered iOS app

Last week we've transferred a published app in iTunes Connect to another company's account. Now they want us to provide an update to the app.

How do we sign, package and submit the app to them for publishing? Which Provisioning profile do we need to use? Do we still sign the .ipa with our team and send the .ipa to them or do we need to have additional info for this to work?

I hope someone is able to shed some light on this process, since the whole provisioning and signing process is hard to grasp for me.

Upvotes: 2

Views: 250

Answers (2)

Madhu
Madhu

Reputation: 437

Recently we have transferred our app to another company and we have pushed an update to the app. Let me explain you how we did

  1. Once you transfer the app to another company account, you will not be able to use your old certificates for publishing any new update for app.
  2. Apple by default removes your certificates and appid from your previous account.

  3. Apple generates an app id for your app in transferred account.

  4. You can use this app id and create new certificate for your app and publish the app by using new account.

Upvotes: 2

David Ansermot
David Ansermot

Reputation: 6112

You have to get the certificate and the private keys used to signe the application.

You import the private keys on your computer and install the certificate.
Then get the corresponding profile, compile, sign and post.

The other solution is to regenerate a new certificat with the keys on your computer, a new provisionning profile.

Then sign the app with those new files.

The certificate and profile need to be created from the new account.

Upvotes: 1

Related Questions