Conversion to Dalvik format failed: Unable to execute dex: java.nio.BufferOverflowException

android

Solution

the key is to set `target=android-19` from `project.properties` and `android:targetSdkVersion="19"` same to 19. This has worked for me.

Problem

I am getting following exception when I am trying to run my Android project. Conversion to Dalvik format failed: Unable to execute dex: java.nio.BufferOverflowException Currently now I am using ADT version 22.3. My project target is API level-15. I tried to add Support library in Android tools, but problem not resolved.

Original source

Related problems