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 包。
问题是当我查看Android Dependencies
文件夹时,jar 不是从库项目的 libs 文件夹中导入的。当我尝试手动添加它时,一切都会编译,但在运行时它又回来咬我,说 jar 的 classDefinitionNotFound(这里例如是JSONArray from
json-simple-1.1.1.jar 。
关于如何解决这个问题的任何想法?