Android Studio 项目导入,构建时报错

时间:2023-01-17 18:29:59

Android Studio 项目导入,构建时报错

遇到如下错误:
*Error:Unable to start the daemon process: could not reserve enough space for object heap.
Please assign more memory to Gradle in the project’s gradle.properties file.
For example, the following line, in the gradle.properties file, sets the maximum Java heap size to 1,024 MB:*

网上查阅后找到如下方法:

根据提示,将 gradle.properties 文件中的
这行配置进行修改,可以直接替换掉原来那行

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

但是依然存在错误提示,参考* 上的回答,尝试删掉用户目录下的.gradle 文件夹,再次进行构建,终于不报错了.

来自*上的解决办法

http://*.com/questions/33233426/android-gradle-project-sync-failure