没有足够的内存来执行请求的操作 - Android studio

问题描述 投票:11回答:1

我已经使用Android Studio 2.1一段时间了,在我之前的项目中,它似乎工作得很好。但现在我收到了这个错误:enter image description here

这困扰了我一段时间,直到我决定谷歌解决方案,并最终得到一些信息,如how to increase the heapsizethis seemed to work for the OP.

我还没有成功。

我直接使用studio64.vmoptions文件(尽管A.S明确建议不然,但我很绝望)

我注意到在集成Google Places API之后发生了一段时间后出现问题,但我无法在两者之间建立连接。

有什么建议?我真的可以使用一些帮助,我积压的工作正在起来:(

这就是我的vmoptions的样子:

# custom Android Studio VM options

#
# *DO NOT* modify this file directly. If there is a value that you would like to override,
# please add it to your user specific configuration file.
#
# See http://tools.android.com/tech-docs/configuration
#
-Xms512m
-Xmx2048m
-XX:MaxPermSize=512m
-XX:ReservedCodeCacheSize=240m
-XX:+UseConcMarkSweepGC
-XX:SoftRefLRUPolicyMSPerMB=50
-da
-Djna.nosys=true
-Djna.boot.library.path=

-Djna.debug_load=true
-Djna.debug_load.jna=true
-Dsun.io.useCanonCaches=false
-Djava.net.preferIPv4Stack=true
-XX:+HeapDumpOnOutOfMemoryError
-Dawt.useSystemAAFontSettings=lcd

更多信息:我在Linux操作系统上。

android android-studio jvm
1个回答
4
投票

您可以改善Gradle性能以避免此消息。

在中创建一个名为gradle.properties的文件

/home/<username>/.gradle/ (Linux)
/Users/<username>/.gradle/ (Mac)
C:\Users\<username>\.gradle (Windows)

并添加以下行:

org.gradle.daemon=true

这有很大帮助,org.gradle.daemon设置为true Gradle重用以前版本的计算并在内存中缓存有关项目结构,文件,任务等的信息,因此不必每次都启动整个Gradle应用程序。

© www.soinside.com 2019 - 2024. All rights reserved.