Android Studio: Unable to start the daemon process

Good afternoon! Sorry, After installing the Android Studio shows an error:

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.4/userguide/gradle_daemon.html
Please read the following process output to find out more:

Who can explain what’s wrong? and how to fix it?
My system options (Windows7, х32, Pentium® Dual-Core E5500@2/80GHz, RAM 4.00 Gb, Intel® G41 Express Chipset
)
thank you for your help

eax! I download ‘gradle-2.8-all’ and it’s work to me!

I’ve been researching this error and I found the answer after searching a little bit and found the answer.

I find the answer in the website: www.experts-exchange.com/…

This problem occurs because of memory reserved for the IDE it is too low. so what we need to do is override them.

Proceed like this…

With Android IDE open, just only add this line of code in gradle.properties

org.gradle.jvmargs=-Xmx1024m -XX\:MaxPermSize\=512m

and now u click in Try Again…

Your file will look like this:


org.gradle.jvmargs=-Xmx1024m -XX\:MaxPermSize\=512m

# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

I hope it helped you.