NoClassDefFoundError - Eclipse and Android

后端 未结 27 969
夕颜
夕颜 2020-11-22 08:02

I\'m having a problem trying to run an Android app which, up until adding a second external library to its build path, was working fine. Since having added the scoreninja ja

27条回答
  •  一向
    一向 (楼主)
    2020-11-22 08:31

    I have encountered the same issue. The reason was that the library that I was trying to use had been compiled with a standard JDK 7.

    I recompiled it with the -source 1.6 -target 1.6 options and it worked fine.

提交回复
热议问题