0

我正在编译一个使用该symja库的示例 Android 应用程序,该库本身通过直接将以下库包含在以下库中来使用它们src

com.google.common.*
edu.js.*
org.apache.commons.math*
org.matheclipse.*

构建此应用程序大约需要 1:30 分钟和 2.8 GB RAM。我认为对于像计算机代数系统库这样复杂的东西来说这很好。

不幸的是,这不仅是第一次。

当我在组成实际应用程序而不是库的少数 .java 文件之一中仅更改一行代码时,我不得不再次等待 1:30 分钟。

这是我在那段时间收到的唯一进度通知:

http://puu.sh/sBr5

我检查了文件修改日期,当时只更新了 .apk 和 .dex 文件。是什么让它花这么长时间?

项目目录 (zip)

4

2 回答 2

2

The Eclipse Java builder is incremental (see "Sidebar: the Java Builder" on this page), so it shouldn't be having to rebuild your entire project every time. Something unusual must be going on if it is indeed recompiling every single file.

于 2012-05-02T20:26:18.973 回答
2

只需在项目下的菜单中取消选择“自动构建”。

于 2012-05-02T20:20:39.987 回答