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
- 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)
- copy this code to a
*.cs file (i named mine: AndroidAutoIncrementVersionCode.cs)
- open a command prompt and navigate over to where you made your
*.cs file
- 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)
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

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

c) 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.

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

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.

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