There is a mention of another maven android plugin that does builds
and installs for Android applications (
http://svn.apache.org/viewvc/
maven/sandbox/trunk/plugins/maven-android/).
This is working great for me, because I prefer to build with Maven and
I develop in IntelliJ. With this plugin I've been able to hot-deploy
my changes, and I've also been able to remote debug with IDEA.
However, when I recently upgraded to m5-rc14, I started having
problems with my build (apart from API and layout changes). Turns out
you need to override the default value for the android version... so
just adding this plugin element to your pom.xml will do the trick.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-aapt-plugin</artifactId>
<configuration>
<androidVersion>m5-rc14</androidVersion>
</configuration>
</plugin>
The other reason why I'm not using the plugin provided by this project
is that I was getting an error regarding "AIDL not supported in
Windows".