I’d like to reference an external configuration (e.g., *.ini) file that will allow me to set configuration variables for each deployment of my Air application. Unfortunately, I haven’t been able to find any information on the best way to approach this problem.
With that being said, does anyone have any advice on how to make this happen?
Here’s the implementation of the small xml idea:
Just place the config.xml file in your src directory, it will appear in the installed directory when the release package gets installed. I made config a public var on my main application, so I can just do Application.application.config.someOption from anywhere in my project.