Raj Aggrawal
Raj Aggrawal

Reputation: 761

Uploading multiple builds of same iOS Application

I want to upload two build of same app with little UI changes on app store with different account. Can I upload the builds?

I have an app with multiple client so I want to upload builds for each client with their own account. I have modified the UI for each clients.

Upvotes: 2

Views: 412

Answers (3)

Andrej
Andrej

Reputation: 7416

Yes, you can. What I do in similar situations is that I use one project for that (as you already have). And then I crate a copy of a target, so that I can customise it (custom logo, custom icon, ...).

To apply customisation in code I take advantage of "Custom Build Configurations". Here on SO I've described how I do this (as of writing it's the third answer to the question) custom Build Configurations

Upvotes: 3

purpleguy
purpleguy

Reputation: 64

No issues in doing that. Just take care of the following things which must be different:

  1. Logo
  2. Bundle Identifier (as suggested by Fabio)
  3. package ids of in app purchase items, if any
  4. App preview images/videos
  5. If you are using iAds for showing ads in your app, make sure you do not use the same provider account.

Upvotes: 1

Fabio Berger
Fabio Berger

Reputation: 1917

Sure you can, just make sure that the bundle identifier is different.

Upvotes: 2

Related Questions