2

我在 android 文件中配置 proguard:'proguard-project.txt'。我有一些麻烦,我读到我需要删除:

org.mozilla.javascript.toolsjs.jar文件中打包。我怎样才能删除这个?

我的错误是这样的:

[2013-08-31 13:05:27 -] Warning: org.mozilla.javascript.tools.debugger.ContextWindow: can't find superclass or interface javax.swing.JPanel
[2013-08-31 13:05:27 -] Warning: org.mozilla.javascript.tools.debugger.ContextWindow: can't find superclass or interface java.awt.event.ActionListener
[2013-08-31 13:05:27 -] Warning: org.mozilla.javascript.tools.debugger.ContextWindow$1: can't find superclass or interface java.awt.event.ComponentListener
[2013-08-31 13:05:27 -] Warning: org.mozilla.javascript.tools.debugger.ContextWindow$1$1: can't find superclass or interface java.awt.event.WindowAdapter
[2013-08-31 13:05:27 -] Warning: org.mozilla.javascript.tools.debugger.ContextWindow$2: can't find superclass or interface java.awt.event.ContainerListener
[2013-08-31 13:05:27 -] Warning: org.mozilla.javascript.tools.debugger.EvalTextArea: can't find superclass or interface javax.swing.JTextArea

在我尝试使用之前-dontwarn for this packages,但是当我使用它时,eclipse 显示错误:“out heap space”

或者如果您有其他解决方案,请分享给我。

谢谢。

4

1 回答 1

1

对于这种情况,该选项-dontwarn java.awt.**,javax.swing.**应该没问题。

Eclipse 中的“Out of heap space”错误可能与这些警告无关。eclipse.ini您应该尝试在 Eclipse 的主目录中给 Eclipse 一个更大的堆,例如-Xmx1024m.

于 2013-09-02T16:50:46.000 回答