I currently use a MapActivity in my application. I use it with 2 API Keys. One for debugging, and one for \"production\"
I am fed up with changing these values in th
You should use Product Flavors.
For example:
android { ... defaultConfig { minSdkVersion 8 versionCode 10 } productFlavors { dev { resValue "string", "google_maps_api_key", "DEV_API_KEY" } prod { resValue "string", "google_maps_api_key", "PROD_API_KEY" } } }