Solid Soft
Solid Soft

Reputation: 1932

Add New Version with New Source code by Xcode

Scenario, ABC app on App store with version 1.0 Now i wants to update it with version 1.1

But actual problem is Old source code (Almost 2 years old) has weird behavior, So many things are mess up. Now i am going to create New Project with same feature, same name, same interface, same images etc.

Will apple accept my next version 1.1 from new source code files ?

Please help me elaborate words.

Thanks.

Upvotes: 1

Views: 181

Answers (1)

MABVT
MABVT

Reputation: 1360

Applications in xCode are identified by its name, the BundleIdentifier, Version and Build.

You can of course create the new project and update the code and put it in the store AS LONG AS the information above is absolutely equal and the compiled appilcation is signed with the same certificate information.

This is exactly the case for example when you had to reinstall your machine and recreate the workspace locally.


EDIT: Of couse you have to increase the build string to your new version to make the update succeed. My bad in the first place! :D

Upvotes: 2

Related Questions