Error building Android project with Maven Error building Android project with Maven xml xml

Error building Android project with Maven


OK I got it: it was a configuration problem with the pom.xml:

<plugin>        <groupId>com.jayway.maven.plugins.android.generation2</groupId>        ...................        <configuration>            <sdk>                <platform>17</platform>            </sdk>       </configuration> ............

Just make sure you choose the right SDK version there.The value match_parent is not valid value for earlier versions than Android SDK 1.6 (I was having a <platform>4</platform>).