http://tools.android.com/recent/dealingwithdependenciesinandroidprojects的第一部分解释了
With no other setup needed than adding Library Projects as a dependency in
project.properties, a project’s classpath is automatically populated with:
The content of the project’s libs/*.jar
The output of the Library Projects.
The Library Projects’ libs/*.jar
由于某种原因,这对我不起作用。我使用的是android-eclipse bundle。
问题是当我查看Android Dependencies
文件夹时,没有从库项目的libs文件夹导入jar。当我尝试添加手册时,所有内容都会编译,但是在运行时它会回来咬我,说jar的classDefinitionNotFound(例如JSONArray from
json-simple-1.1.1.jar`。
关于我如何解决这个问题的任何想法?