Eclipse 崩溃,出现堆异常 - 尝试部署 Android 应用程序时内存不足

发布于 2025-01-04 04:45:40 字数 268 浏览 2 评论 0原文

我有一个 Android 项目,在部署时崩溃了。同一工作区中的其他项目运行良好。我将正在使用的 AVD 上的 RAM 使用量增加到 1 GB。我不认为存在内存泄漏,因为它似乎可以在其他人的计算机上运行。

我想使用内存分析器,但项目在启动之前崩溃,并且我无法访问 Logcat 文件。

现在我正在使用 eclipse,有没有办法让我使用 ANT 或命令行启动它,我可以在其中逐步执行它并找到崩溃发生的位置?

任何帮助将不胜感激。

谢谢你,

大卫

I have one Android project that crashes when it is deployed. Other projects in the same workspace work fine. I increased the RAM usage on the AVD that I'm using to 1 GB. I don't think there is a memory leak because it seems to work on other peoples computer.

I'd like to use the Memory Profiler, but the project crashes before launching, and I can't reach the Logcat files.

Right now I'm using eclipse, is there a way for me to launch it using ANT or the command line, where I can execute it step by step and find where the crash is happening?

Any help would be greatly appreciated.

Thank you,

David

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹沉浮 2025-01-11 04:45:41

david

尝试在 eclipse.ini 文件中的 vm 参数中增加 eclipse 的堆大小,例如默认情况下它会像

  -vmargs
  -Dosgi.requiredJavaVersion=1.5
  -Xms40m
  -Xmx512m

您可以更改类似的内容

  -vmargs 
  -Dosgi.requiredJavaVersion=1.5
  -Xms512m
  -Xmx1024m
  -XX:PermSize=256M
  -XX:MaxPermSize=512M

david

Try to increase heap size of the eclipse in vm arguments from eclipse.ini file for example by default it will like

  -vmargs
  -Dosgi.requiredJavaVersion=1.5
  -Xms40m
  -Xmx512m

You can change something like

  -vmargs 
  -Dosgi.requiredJavaVersion=1.5
  -Xms512m
  -Xmx1024m
  -XX:PermSize=256M
  -XX:MaxPermSize=512M
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文