Skip to main content

How To Transfer your app to another iOS Developer Account - iTunes

Transfer your app to another iOS Developer Account



Apple states all apps must be submitted by the provider of the app’s content using their own, unique Apple Developer Account, this also applies to existing, already published apps.

If you currently have one or more apps published on your developer account, the Apple review will now include this check when you submit a store update. In order to avoid any disruptions in the availability of your app in the iOS store, please make sure all your apps are published on a matching developer account. If the app and the developer account do not match, Apple will potentially reject the update. Your older version of the app will remain available.

Fortunately it is possible, and relatively simple, to transfer the ownership of an app to another developer without removing the app from the App Store. When an app is transferred it will keep its reviews and ratings and users will still have access to future updates. You can transfer multiple apps, without limit, but all apps have to be transferred individually.

Step 1: Verify that the app can be transferred

The app must meet specific criteria to be transferable.

App transfer criteria

Before an app can be transferred it has to meet the following criteria:
  • Both accounts can’t be in a pending or changing state, and the latest version of the agreements in the Agreements, Tax, and Banking section must be accepted.
  • No version of the app can use an iCloud entitlement.
  • No version of the app can use a Passbook entitlement.
  • The App must have had at least one version that has been released to the App Store.
  • In-app purchase product IDs on the app can’t be the same as product IDs on any apps in the recipient’s account.
  • TestFlight beta testing should be turned off for all beta versions of the app.
  • Sandboxed Mac apps that share the Application Group Container Directory with other Mac apps cannot be transferred.

Step 2: Backup all app information

Because an app is removed from your account after an app transfer, we recommend you backup all information about the app before you transfer it. It’s a good idea to keep a record of your appʼs metadata and pricing, note dates the app was available on the App Store, and save sales and download information.

Step 3: Initiate the app transfer

The team agent in your organisation initiates the app transfer.

Step 4: Accept the app transfer

The team agent in the recipient organisation accepts the app transfer.

Initiate an app transfer

Required role: Legal (Team Agent).
  1. Click "My Apps" on the homepage. A list of all apps will display. Select the app you want to transfer and scroll to the 'Additional Information' section, click "Transfer App,' then click "Done."




  •  If your app meets all the criteria mentioned in the start of this article, click "Done." If the app doesn't meet all criteria you should resolve the issues.

    my_apps_at_recipient_info_2.png


  • Read the terms, select “I have read and agree to the agreement presented above,” and click "Request Transfer."

    my_apps_at_confirm_transfer_3.png

    1. Enter the Apple ID and Team ID for the recipient’s team agent, and click "Continue."
    2. Click "Done" to return to the App Information page.
    After you initiate the transfer, the app stays in its previous status, with the Pending App Transfer status added, until the recipient accepts it.

    Accept an app transfer

    1. Sign in to iTunes Connect as the Team Agent. A notice indicates that an app is ready to be transferred.


    2. Click "Agreements, Tax and Banking."

    3. Below "Transfer Agreements," click "Review" next to the app in the "Contracts In Process"  section.


    4. Enter the new metadata.
    • Support URL
    • Atom feed URL (required if the app previously had an atom feed URL)
    • Marketing URL (required if the app previously had a marketing URL)
    • Privacy policy URL (required if the app previously had a privacy policy URL)
    • CCATS (a new CCATS form is required for apps that use export compliance)
    • App Review contact information
    • App Store contact information
    5. Read the terms, select “I have read and agree to the agreement presented above,” and click "Accept."

    It can take up to two business days for the app transfer to complete, during which the app statusis "Processing App Transfer."

    Comments

    Popular Posts

    What are the Alternatives of device UDID in iOS? - iOS7 / iOS 6 / iOS 5 – Get Device Unique Identifier UDID

    Get Device Unique Identifier UDID Following code will help you to get the unique-device-identifier known as UDID. No matter what iOS user is using, you can get the UDID of the current iOS device by following code. - ( NSString *)UDID { NSString *uuidString = nil ; // get os version NSUInteger currentOSVersion = [[[[[UIDevice currentDevice ] systemVersion ] componentsSeparatedByString: @" . " ] objectAtIndex: 0 ] integerValue ]; if (currentOSVersion <= 5 ) { if ([[ NSUserDefaults standardUserDefaults ] valueForKey: @" udid " ]) { uuidString = [[ NSUserDefaults standardDefaults ] valueForKey: @" udid " ]; } else { CFUUIDRef uuidRef = CFUUIDCreate ( kCFAllocatorDefault ); uuidString = ( NSString *) CFBridgingRelease ( CFUUIDCreateString ( NULL ,uuidRef)); CFRelease (uuidRef); [[ NSUserDefaults standardUserDefaults ] setObject: uuidString ForKey: @" udid " ]; [[ NSUserDefaults standardUserDefaults ] synchro...

    Ultimate Folder Structure For Your React Native Project

      Ultimate Folder Structure For Your React Native Project React native project structure React Native is a flexible framework, giving developers the freedom to choose their code structure. However, this can be a double-edged sword for beginners. Though it offers ease of coding, it can soon become challenging to manage as your project expands. Thus, a structured folder system can be beneficial in many ways like better organization, simplified module management, adhering to coding practices, and giving a professional touch to your project. This write-up discusses a version of a folder arrangement that I employ in my React Native projects. This structure is based on best practices and can be modified to suit the specific needs of your project. Before we get into the project structure let’s give credit to @sanjay who has the original idea of the structure but I modify his version of the code, to make it better. Base library axios  — For network calling. react-navigation ...

    16 AWS Gotchas

    16 AWS Gotchas In January I launched the MVP for my own startup,  Proximistyle , which helps you find what you’re looking for nearby. On advice from friends and industry contacts I chose AWS as my cloud provider. Having never had to set up my own cloud infrastructure before, the learning curve to get from no experience to a stable VPC system I was happy with was significantly steeper than expected, and had its fair share of surprises. #1 Take advantage of the free resources offered AWS offers a free tier for new accounts. If you have recently bought a domain and set up a company you qualify for the free tier for a year. Additionally, if you are a bootstrapped startup you can apply for  the Startup Builders package  and get $1000 in AWS credits. After doing the above, you’re now ready to get started with setting up the AWS infrastructure for your startup. #2 Set up billing budgets and alerting The very first thing you should do after setting up billing, is enabling a budge...