24

This morning I have been experiencing an issue with Android Studio, whenever I open it I am getting the following error.Android Studios Out of Memory error

I have tried removing Android Studio and getting a clean install. Removing all the preference folders. Removing and re-downloading my project's repository. Creating a new project. All of these still end with this error showing up. No mater how high I increase the memory it is still getting this issue.

I have checked the Activity Monitor and it is actually only using 524mb of memory. Does anyone have any suggestions?

The next thing I'm going to try is using an older version of Android studios. Apart from that I'm not sure what else to do beside a clean install of the OS and hope for the best.

UPDATE: Couldn't work out a way of fixing this, and had to perform a clean reinstall of OSX.

4

7 回答 7

57

我今天与这个问题斗争了几个小时,最后尝试了 File -> Invalidate Caches / Restart... 并选择了 Invalidate/Restart 选项。似乎已经修复了内存不足错误。

不知道这是否会在以后对您有用,但希望对您有所帮助。

于 2014-01-27T22:23:50.490 回答
5

转到 /Applications 并右键单击 Android Studio > 显示包内容 然后转到 /Contents/bin/studio.vmoptions 并像这样进行更改:

-Xms128m

-Xmx800m

-XX:MaxPermSize=350m

-XX:ReservedCodeCacheSize=96m

-XX:+UseCompressedOops

于 2015-01-15T10:05:47.420 回答
3

在 Android Studio 中有几种方法可以处理内存不足:

  1. 清理项目并重建
  2. 使缓存无效/重新启动 -> 将项目与 Gradle 文件同步
  3. 重启电脑
  4. 关闭 Android Studio -> 删除 .idea 文件夹 -> 启动 Android Studio 并重新构建。
  5. 仍然面临这个问题,需要适当的调查。
于 2020-04-05T01:59:51.160 回答
2

这可能是您代码中的一个简单错误,Android Studio 不知道如何解决。

示例问题:就我而言,在我的活动的 onCreate 函数中,我编写binding.root.also{ }并删除了同样作用域函数的左大括号。这导致 Android Studio 内存不足并死机。

解决方法:我删除了记事本中的also功能,之后就没有问题了。

于 2021-05-21T04:41:21.510 回答
1

当我输入 /* 开始注释几行时,这发生在我身上。它发生在我可以添加 */ 以关闭评论部分之前。因此,文件的整个后半部分(及以后)都被注释掉了。我无法返回添加所需的 */ 来关闭评论,因为在我这样做之前“内存不足”窗口不断弹出。

所以我关闭了 Android Studio,在 NotePad 中打开了相同的 .java 文件,在 /* 下面添加了需要的 */ 几行,用 NotePad 保存了文件,然后在 Android Studio 中再次打开它。

内存不足问题一去不复返了。

于 2016-09-27T17:40:33.257 回答
0

在我的情况下,我也遇到了同样的问题,我尝试转储内存,它达到了 200mb,并且在打开工作室时它显示了连续的过程,因为文件正在加载“.hprof”。最后,我删除了“.hprof”并能够运行我的项目。从目录 '' 中删除的 .'hprof' 文件

于 2018-12-02T17:32:58.780 回答
0

即使我有 16gb Ram + I7700K CPU,我最近也遇到了同样的错误(Android studio 3)。我注意到它在我禁用虚拟内存 RAM 后开始出现,因为我的 SSD 需要一些额外空间。所以我只是重新激活它,问题就解决了!

于 2017-12-21T12:06:26.033 回答