備忘録

備忘録

Could not fetch model of type 'IdeaProject' using Gradle distribution

Android Studioを導入し、
新規プロジェクトを作成しようとしたときに出てきた、
こいつの対処方法

とりあえず、ダイアログのテキストをコピペ

Failed to import new Gradle project: Could not fetch model of type 'IdeaProject' using Gradle distribution 'http://services.gradle.org/distributions/gradle-1.6-bin.zip'.
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.6/userguide/gradle_daemon.html
Please read below 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.


Consult IDE log for more details (Help | Show Log)

対処法
1. C:\Users\ユーザ名\.gradle\gradle.propertiesを作成する
2. 1のファイルをテキストエディタで開き、以下を入力し、保存

org.gradle.jvmargs= -Xmx512m

以上