VSCode에서 gradle sync하는법

프로젝트 내부의 android 폴더에서 아래 명령 실행
.\gradlew –refresh-dependencies

보통은 바로 Sync. 작업이 돌아 가는데 간혹..

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/1.12/userguide/gradle_daemon.html
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for 1048576KB object heap
Java HotSpot(TM) Client VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0

이런오류가 나는 경우가 있음.. 이럴때는
gradle.properties 화일에
org.gradle.jvmargs=-Xmx1024m 으로 추가 또는 변경 하고
Save 하면 정상 처리 됨.. ( 상환에 따라서. 512m으로 변경 해되됨 )