本文主要是介绍Android Studio没有足够空间启动JVM,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Android Studio Error:Unable to start the daemon process. This problem might be caused by incorrect c……
最近在写一个小项目的时候,上一次打开工程还是好好的,再次打开的时候就报错
ActionBarActivity,View 全部识别不了。
Error:Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at http://gradle.org/docs/2.2.1/userguide/gradle_daemon.html
Please read the following process output to find out more:
Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
解决办法:
1 定位到目录 C:\Users\Administrator.gradle
2 创建文件gradle.properties
内容:org.gradle.jvmargs=-Xmx512m
3 重启你的Android Studio项目
亲测有用!
这篇关于Android Studio没有足够空间启动JVM的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!