Reputation: 3456
I have opened a can of worms by using an old pre-built project as the foundation for a new one.
When I open the old project in the simulator or on a device, it uses images and settings from the new app that aren't even referenced or included in that original project. Even worse, when I download the old app from the app store, it overrides my new app on the test device. The device sees the two different apps as the same project still.
How can I make these apps completely separate from one another?
Upvotes: 1
Views: 984
Reputation: 9040
Before running your application, remove the older one from your phone/simulator
And if this is not an update for the old app, Then USE A DIFFERENT BUNDLE IDENTIFIER.
Also, before you run the app from Xcode, CLEAN, BUILD then RUN.
Upvotes: 2
Reputation: 50109
iOS usees the bundle identifier to uniquely identify an app. the display name is of no importance for the os.
Upvotes: 0