I want to change android:versionName each time when I release apk.

Are there any eclipse plugin or some other ways that can help it automatically change along with my code's compilation?

For example, today is 10/09/2011, I want the value android:versionName in AndroidManifest.xml be set to 1.0.0.1009

link|improve this question

25% accept rate
I once played with svn $Rev:$ tag but to no avail: could not make it a number. I think only a shell script can do this... – Laurent' Oct 9 '11 at 8:55
feedback

1 Answer

Not using eclipse sorry (but with Ant yes , see this) , i know it can be boring to do that . But you don't release everyminute , no?

MODIFIED

Ant way , the use of Ant properties

Tomorrow i'll try to find more doc about if you need it

link|improve this answer
Hi A.Quiroga: Thanks for your reply, but I don't know how to use your tool :( Could you help me? – jiangyan.lily Oct 9 '11 at 13:20
Hi A.Quiroga: Thanks for your help. Now I write a simple ant xml and add it before building android project, but because it will change the content of AndroidManifest.xml before build which eclipse don't know the change, I will get error message "org.eclipse.core.internal.resources.ResourceException: Resource is out of sync with the file system: '/TestAntAndroid/AndroidManifest.xml'. [2011-10-10 17:38:18 - TestAntAndroid] AndroidManifest.xml does not declare a Java package: Build aborted." – jiangyan.lily Oct 10 '11 at 9:54
jiangyan.lily, check out this answer: stackoverflow.com/a/4411540/6349 – webmat Dec 22 '11 at 14:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.