Re: [android-developers] How to modify the .apk file name during compilation

2010-09-27 Thread Agus
use ant On Sun, Sep 26, 2010 at 11:38 PM, mahesh patil wrote: > Hi all, > > I want to change my apk file name on every compilation of my build. > > For example, > I have my build name currently, > android.apk > > Now I want it to be on every compilation as, > android_v0_0_1.apk > android_v0_0_2.a

Re: [android-developers] How to modify the .apk file name during compilation

2010-09-27 Thread Leigh McRae
Same as my other reply. Have a java builder run after all other builders. Use either a script or one of the ant tasks to rename the file. I tend to actually have release directories with the version name instead of renaming the apk. Really I would spend sometime on researching ant and setu

[android-developers] How to modify the .apk file name during compilation

2010-09-26 Thread mahesh patil
Hi all, I want to change my apk file name on every compilation of my build. For example, I have my build name currently, android.apk Now I want it to be on every compilation as, android_v0_0_1.apk android_v0_0_2.apk android_v0_0_3.apk . . .