views:

11

answers:

1

I'm developing one of my first Android apps. I come from an ASP.NET world where it's trivial to have separate Web.config files for dev, test, and production. Does anyone have a good, automated way of doing this for Android via Eclipse?

+1  A: 

Have a command line ant based build system that takes "dev", "test", "production" as parameters and copies in the appropriate xml files for the build. This assumes that you already have a set of xml/config files for them.

omermuhammed