Android: Maven trophies with ADT 14

I recently updated the Android SDK to 14.0.0

Environment: Ubuntu 10.04, Eclipse Helios.

Project Goal - 8 (Android 2.2)

In my project I use maven. Then I try to build a project, I get the following error: "Error converting to Dalvik format with error 1"

And maven said the following: "Cannot create an APKBuilder null object"

BUT, if I create an Android project without maven - everything is OK.

UPDATE:

The cleaning project doesn't help me

+6
source share
1 answer

This seems like a known issue with the Android M2E connector:

Look here:

https://github.com/rgladwell/m2e-android/issues/45

and here:

http://code.google.com/p/android/issues/detail?id=21031

There seems to be a fix for it with ADT 15 and the latest Android M2E connector

Try upgrading to the latest ADT 15 and Android M2E Connector using the instructions provided here on the m2e android connector site.

+1
source

Source: https://habr.com/ru/post/900034/


All Articles