At work, I need to use maven with Android.
maven uses appt.exe for its own compiling process.
ever since I\'ve upgraded to ADT 22 , maven says it can\'t find
The correct fix is to clone the android-maven-plugin wich is actually up to date with the latest developper tools but not yet released in central maven repository :
Clone the android-maven-plugin on GitHub and install it in your repo
git clone https://github.com/jayway/maven-android-plugin.git
cd .../maven-android-plugin/
mvn clean install
Then update your pom to use version 3.5.4-SNAPSHOT of the plugin. Everything should work properly !