堆 Space 大小?

Heap Space Size?

我的资产中有一个数据库文件 (300mb) folder.When 我是 运行 它给我的代码低于错误

Error:Execution failed for task ':app:packageDebug'.
> Java heap space
ect's gradle.properties file.
For example, the following line, in the gradle.properties file, sets the maximum Java heap size to 1,024 MB:
<em>org.gradle.jvmargs=-Xmx1024m</em>
<a href="http://www.gradle.org/docs/current/userguide/build_environment.html">Read Gradle's configuration guide</a><br><a href="http://docs.oracle.com/javase/7/docs/technotes/guides/vm/gc-ergonomics.html">Read about Java's heap size</a>

下面是gradle.properties

# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.


# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true


org.gradle.jvmargs=-Xmx1024m -XX:MaxPermSize=1024m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

我尝试了很多事情,比如在环境变量中更改 _JAVA_OPTIONS,更改 studio.exe.vmoptions 中的值以及gradle.properties 但它给了我同样的错误。

请帮忙

尝试增加 java 堆大小。以下是步骤:

在 Android Studio

的右下角寻找内存指示器

如果您没有看到此选项,请从 Android Studio 首选项 > 外观和行为 > 外观 > 显示内存指示器中启用它

增加 java 堆大小:选择“帮助”>“编辑自定义 VM 选项”

更新 studio.vmoptions 文件中的 Xmx 值,该文件在您 select 上述选项时打开。对于 8GB RAM,我添加了这些值,您可能需要根据您的系统配置进行调整:

-Xmx4096m
-XX:MaxPermSize=1024m

您也可以在 ~/Library/Preferences/AndroidStudio

中找到此文件

重新启动 Android Studio 并查看您的内存指示器是否显示更新的值。