My Android manifest uses different values when debugging and when releasing.
What's the easiest way to differentiate a value for each build type?
When debug:
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="my-lovely-debug-api-key" />
When release:
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="my-lovely-release-api-key" />
tia.
Note that if you are using default Eclipse builds it probably uses a specially configured 'Ant' module within eclipse. You can check on the degree of Eclipse/Ant coordination by checking 'Window/Preferences/Ant' section in eclipse/Prefs....
One solution is to make more explicit, the collaboration of Eclipse/Ant so that a 'build.xml' file is part of your project ( project level build file rather than the default file copied in at build time from the $SDK/ROOT folder ).
see here and read the comments at bottom here to get better idea of how a project level 'build.xml' file is used.
Once you've digested that , the solution below will make more sense...
--Solution--
Modify the Release and the Debug sections of you 'build.xml' file as follows:
And in the 'ant.properties' file in your root folder, put the property values for the API keys and whatever...
And tie it together in a resource xml that is the target of the 'copy' commands in the build...