ADT 22 - missing aapt.exe after upgrading

后端 未结 4 1546
醉酒成梦
醉酒成梦 2020-12-13 19:48

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

4条回答
  •  渐次进展
    2020-12-13 20:28

    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 !

提交回复
热议问题