Error: the minimum supported version of Gradle is 2.10, Gradle 3.x is not yet supported

Full name I wanted:

Error: The minimum supported version of Gradle is 2.10, Gradle 3.x is not yet supported. The current version is 2.4. If you are using the Gradle shell, try editing the distribution Url in ... \ gradle -wrapper.properties to gradle -2.10-all.zip

I have an old project that I'm trying to open in Android Studio 2.2 (Preview 6), and when I try to create a project, I get the following error.

Error: The minimum supported version of Gradle is 2.10, Gradle 3.x is not yet supported. The current version is 2.4. If you are using the Gradle shell, try editing the Url distribution in C: \ Users \ home \ Documents \ code \ MY_PROJECTS \ notify-me-not-app \ gradle \ wrapper \ gradle -wrapper.properties in gradle -2.10-all.zip

enter image description here

I went to gradle-wrapper.properties below and this my file looks like this:

\ gradle \ wrapper

 #Fri Jul 17 23:20:07 CDT 2015 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 
+5
source share
1 answer

You are using 2.4, which is less than 2.10 (4 <10). Change the distribution url as it asks

 distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 
+14
source

All Articles