I have some code that sets some "developer only" settings when loading my app. I want to be able to have these settings turn on automatically only when my app is run for development (whether that's via Xcode, Simulator, in debug-mode, on a development device, etc).
What is the proper way to set this up so my "developer only" settings don't get accidentally released and used in the real world within my app.
// FIX ME: **** ADMIN CODE ****
// Turn off before uploading to production!
self.unlockCount = 10
self.unlockByItemCount = false
self.withIntro = false