반응형
출처:http://gogorchg.tistory.com/entry/Android-Studio-error-occurred-during-initialization-of-vm
Android Studio를 설치하고! 이제 개발해보자 하는 순간 Gradle 관련하여 Heap 메모리가 부족하다는 에러가 발생하여 불능 상태가 됩니다. VM을 만들수 없다는 건데요.
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. |
이럴 경우 이전 Eclipse 같은 경우는 ini 파일을 수정하여서 heap 사이즈를 올려서 해결 했었는데
Android Studio는 열심히 구글링을 해보니 버전 별로 설정 메뉴가 달라 잘 되지 않더라구요.
이때! 한가지의 방법이 저의 답답함을 해결해 줬습니다.
Android Studio 의 Project를 보시면 gradle.properties 라는 파일이 있습니다.
이 파일을 열어 가장 밑에 아래와 같이 복사해서 붙여넣기 해주시고
다시 gradle를 Sync 시키면 에러가 사라지게 됩니다.
org.gradle.jvmargs=-Xmx512m -XX:MaxPermSize=512m |
많은 사람들에게 도움이 됬으면 좋겠네요.
오늘도 즐거운 코딩 하세요.
참고 : http://www.codedisqus.com/fmQziVUkje/android-studio-gradle-project-sync-failed.html
반응형
'IT기술 관련 > 모바일' 카테고리의 다른 글
[Android] Text넣을 수 있는 Dialog (0) | 2016.01.02 |
---|---|
[Android] 현재 시간 구하기 (0) | 2016.01.02 |
[Android] ScrollView can host only one direct child 스크롤뷰 문제해결 (0) | 2015.12.28 |
[Android] “gradle DSL method not found: android()” 해결하기 (0) | 2015.12.23 |
[Android] failed to find target android-21 오류 해결하기 (0) | 2015.12.18 |