Reputation:
I removed the settings.bundle from an app I'm working on as it's no longer needed. However it is still being added to the device's settings when reinstalled. But the simulator doesn't add the settings bundle as expected.
Here's what I've done so far.
Is there something I've missed or is xcode being daft??
Thanks in advance!
Upvotes: 3
Views: 1044
Reputation: 7344
Use Command+Shift+k to clean all your targets. It seems that the simulator version was re-built properly but when you build the arm version XCode doesn't see the changes you have made.
Upvotes: 2