Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove Settings.bundle from previous app version?

My iPad app currently uses Settings.bundle to allow settings both via the built-in Settings.app as well as via InAppSettingsKit. I now want to switch to IASK entirely and disable the built-in settings. I have renamed the Settings.bundle folder to InAppSettings.bundle, but when I deploy this new version to my test device, the old Settings data seems to stick around - at least, I can still access the old settings via Settings.app.

Is there a way to force removal of Settings.bundle when a new version of the app is installed?

like image 594
Gereon Avatar asked Jan 26 '13 11:01

Gereon


1 Answers

Make sure you do a clean build in Xcode. For development builds, you also need to remove the app from the Simulator or device first. Otherwise old files are left in place.

like image 175
rmaddy Avatar answered Sep 21 '22 04:09

rmaddy