is there a way to auto-increment the version code each time you build an Android application in Eclipse?

According to http://developer.android.com/guide/publishing/versioning.html, you have to manually increment your version code in AndroidManifest.xml.

I understand, you have to run a script before each build which would, e.g. parse AndroidManifest.xml file, find the version number, increment it and save the file before the build itself starts. However, i couldn't find out how and if Eclipse supports runnings scripts before/after builds.

I have found this article about configuring ant builder, but this is not exactly about Android and I fear this will mess up too much the predefined building steps for Android?

Should be a common problem, how did you solve it?

Well, one can do this manually, but as soon as you forget to do this chore, you get different versions with the same number and the whole versioning makes little sense.

link|improve this question

just thought, one could use commit hooks in the version control system to increment version code in the manifest or even just replace the version code with revision number. This might be also acceptable – iseeall Jul 20 '11 at 7:58
looks like using SVN/CVS revision number would be the only way. Because if the script just increments the number in the manifest, builds done by different developers would have arbitrary increasing, unsynched numbers. Revision number is global. – iseeall Jul 20 '11 at 8:45
feedback

3 Answers

up vote 4 down vote accepted

So, I see it like this:

Depending on article that you present, use ant for this tasks (targets?).

  1. parse Manifest (parse XML)
  2. get old version form manifest and increase it/get version from repo
  3. store new version in manifest
  4. build android app.

But im my case I usually fill this field by value based on Tag's revision when I deploy or distribute application.

link|improve this answer
Yes, those are the steps the script should be. Unfortunately I can't find out where the script call should be. Building Android app from Eclipse doesn't use build.xml file. So, my question boils down to: where (in what file? in what Eclipse project setting?) to place the call of the script – iseeall Jul 20 '11 at 9:05
Actually, if one uses CVS, such a script won't make versioning automatic. CVS doesn't support project-wide revision numers, that's why you used italic on Tag. But you then first have to create a CVS tag manually. Which means, if you forget to create a CVS tag, you end up with incorrect build number. This is essentially the same as just manually updating versionCode in AndroidManifest.xml, with the only advantage that the build number is also in synch with tag visible to other developers (well, it's in code anyway). Looks like real automation is not achievable if CVS is used. – iseeall Jul 20 '11 at 9:44
1  
Sorry, I don't directly use ant for build android apps. But that what I saw had a lot of code. Look at this link. – aeracode Jul 20 '11 at 10:27
You are right about CVS. Similar question – aeracode Jul 20 '11 at 10:36
Building and Running from the Command Line - not very informative. – aeracode Jul 20 '11 at 10:44
show 1 more comment
feedback

I accomplished this. And here's how I did it for the next guy (using Eclipse):

1) Create an external console executable that is going to write a new version code to the AndroidManifest.xml: (mine is in C#)

using System.IO;
using System.Text.RegularExpressions;

namespace AndroidAutoIncrementVersionCode
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                string FILE = @"AndroidManifest.xml";
                string text = File.ReadAllText(FILE);
                Regex regex = new Regex(@"(?<A>android:versionCode="")(?<VER>\d+)(?<B>"")", RegexOptions.IgnoreCase);
                Match match = regex.Match(text);
                int verCode = int.Parse(match.Groups["VER"].Value) + 1;
                string newText = regex.Replace(text, "${A}" + verCode + "${B}", 1);

                File.WriteAllText(FILE, newText);
            }
            catch { }
        }
    }
}

aside: any c-sharp compiler can build this app, you don't need Visual Studio or even Windows

  1. if you don't have it already, install .NET runtime (Mono will work, link) (link to MS's .NET framework 2.0, 2.0 is the smallest download, any version >= 2.0 is fine)
  2. copy this code to a *.cs file (i named mine: AndroidAutoIncrementVersionCode.cs)
  3. open a command prompt and navigate over to where you made your *.cs file
  4. build the file using this command (on Windows, similar for Mono but change path to compiler): c:\Windows\Microsoft.NET\Framework\v2.0.50727\csc AndroidAutoIncrementVersionCode.cs (see: .NET or Mono for more info)
  5. congrats, you just built a C# app without any tools, it should have generated AndroidAutoIncrementVersionCode.exe in the same directory automatically

    *mileage may vary, paths might be different, no purchase required, void where prohibited, i added this because C# is awesome, and people mistakenly think it has MS lock-in, you could just as easily translate this to another language (but i'm not going to do that for you ;). incidentally any version of any .NET compiler will work, i adapted the code for the least common denominator...

end aside

2) Run the executable during the build process: a) Go to the project properties

go to project properties

b) In the properties, Go to "Builders" -> "New..."

Eclipse properties screen

c) Choose "Program"

choose program

d) In the "Main" tab select the program location (I also set the working directory to be safe) and give it a name if you wish.

enter image description here

e) In the "Refresh" tab select the "The selected resource" option - this will refresh the manifest after we write it.

enter image description here

f) In the "Build Options" tab you can turn off "Allocate Console" as you have no input and output and the select which ever build options you prefer (I just select them all and let it go crazy incrementing the version). The click the "Specify Resources..." and locate your AndroidManifest.xml file in the dialog.

enter image description here enter image description here

And then your done, just hit "Finish", "OK", "OK" and you should be set...

link|improve this answer
great answer ! Works great for me. I enhanced it to also increase the "android:versionName" and also uploaded the executable itself for those less versed in C#. – thedrs Feb 6 at 22:40
Note the version name must be in the form of X.Y.Z, and Z is increased each time. Put the exe in the same location as the manifest. – thedrs Feb 6 at 22:50
feedback

I've done something similar but written it as a Desktop AIR app instead of some external C# (didn't feel installing another build system). Build this Flex/ActionScript app and change the path to your file, the build it as a standalone desktop app. It rewrites the 1.2.3 part of your file.

    <?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                       xmlns:s="library://ns.adobe.com/flex/spark"
                       xmlns:mx="library://ns.adobe.com/flex/mx"
                       width="371" height="255" applicationComplete="Init();">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>

    <fx:Script>
        <![CDATA[

            public function Init():void
            {
                import flash.filesystem.File;
                import flash.filesystem.FileMode;
                import flash.filesystem.FileStream;

                var myFile:File = new File("D:\\Dropbox\\Projects\\My App\\src\\Main-app.xml");

                var fileStream:FileStream = new FileStream();
                fileStream.open(myFile, FileMode.READ);

                var fileContents:String = fileStream.readUTFBytes(fileStream.bytesAvailable);

                var startIndex:Number = fileContents.indexOf("<versionNumber>");
                var numberIndex:Number = startIndex + 15;
                var endIndex:Number = fileContents.indexOf("</versionNumber>");

                if (startIndex == -1 || endIndex == -1)
                    return;

                var versionNumber:String = fileContents.substr(numberIndex, endIndex - numberIndex);
                var versionArr:Array = versionNumber.split(".");
                var newSub:Number = Number(versionArr[2]);
                newSub++;
                versionArr[2] = newSub.toString();
                versionNumber = versionArr.join(".");

                var newContents:String = fileContents.substr(0, startIndex) + "<versionNumber>" + versionNumber + "</versionNumber>" +
                                fileContents.substr(endIndex + 16);
                fileStream.close(); 


                fileStream = new FileStream();
                fileStream.open(myFile, FileMode.WRITE);
                fileStream.writeUTFBytes(newContents);
                fileStream.close(); 

                close();
            }
        ]]>
    </fx:Script>
    <s:Label x="10" y="116" width="351" height="20" fontSize="17"
             text="Updating My App Version Number" textAlign="center"/>

</s:WindowedApplication>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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