Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.

傲慢的上校發表於2013-12-16

       在eclipse中匯入專案執行時候,遇到Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.這個錯誤,後經搜尋,發現,原因是因為AndroidMinifest裡面的

<uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="17" />

        targetSdkVersion 必須和project.properties裡面的

target=android-17

相同,經過修改,發現,沒有上面錯誤。

相關文章