I am trying to use latest Gradle version (2.0), however I keep getting this message when hitting gradle build in terminal. Why is it asking for 1.10 version
I fix the problem updating the gradle version within build.gradle file:
dependencies { classpath 'com.android.tools.build:gradle:0.12.2'
}
This solve my problem. I hope this would help.