I want to change application configuration for the connection server where I got two options: Test, Production. This is set using a static string inside of one of my Helper classes.
Now I want to make this change from outside the application, using another icon in the system. The reason for that is that I don't want the user be able to do so (And I don't want it to be a part of my application). Only the development team that has to check the application in the field could add this icon and make this change.
So I don't want to create some kind of widget that will get installed with my application.
Is there a way to do some thing like that? If so how can this be done? Should I make a whole new application for that?
Thanks.