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

    React Native - Text Input

    In this chapter, we will show you how to work with  TextInput  elements in React Native. The Home component will import and render inputs. App.js import React from 'react' ; import Inputs from './inputs.js' const App = () => { return ( < Inputs /> ) } export default App Inputs We will define the initial state. After defining the initial state, we will create the  handleEmail  and the  handlePassword  functions. These functions are used for updating state. The  login()  function will just alert the current value of the state. We will also add some other properties to text inputs to disable auto capitalisation, remove the bottom border on Android devices and set a placeholder. inputs.js import React , { Component } from 'react' import { View , Text , TouchableOpacity , TextInput , StyleSheet } from 'react-native' class Inputs extends Component { state = { ...

    An introduction to Size Classes for Xcode 8

    Introduction to Size Classes for Xcode In iOS 8, Apple introduced  size classes , a way to describe any device in any orientation. Size classes rely heavily on auto layout. Until iOS 8, you could escape auto layout. IN iOS8, Apple changed several UIKit classes to depend on size classes. Modal views, popovers, split views, and image assets directly use size classes to determine how to display an image. Identical code to present a popover on an iPad  causes a iPhone to present a modal view. Different Size Classes There are two sizes for size classes:  compact , and  regular . Sometime you’ll hear about any.  Any  is the generic size that works with anything. The default Xcode layout, is  width:any height:any . This layout is for all cases. The Horizontal and vertical dimensions are called  traits , and can be accessed in code from an instance of  UITraitCollection . The  compact  size descr...

    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...