Is it possible to retrieve any of the build window settings in our code?

I know we can access the target app store name using 

require("store").target

but can we access things like the version number? It would be handy if I could simply update the version number displayed in my app using the version number provided in the build window.

Most of those values are available form the system.getInfo() API call.  http://docs.coronalabs.com/api/library/system/getInfo.html

In this case:   system.getInfo(“targetAppStore”)

ah, thanks Rob. I could have sworn I’d looked there, obviously not thoroughly enough  :wacko:

Most of those values are available form the system.getInfo() API call.  http://docs.coronalabs.com/api/library/system/getInfo.html

In this case:   system.getInfo(“targetAppStore”)

ah, thanks Rob. I could have sworn I’d looked there, obviously not thoroughly enough  :wacko: