"Gradle Version 2.10 is required." Error
As I've been using
classpath 'com.android.tools.build:gradle:+'
In the build.gradle file, I got the following error since gradle version 2.10 has been released. The error is :
Warning:Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in C:Usersblahblahmyprojectgradlewrappergradle-wrapper.properties to gradle-2.10-all.zip
at first it looks easy to solve by the guide, but when I'd done the change, I got the error again.
I'm using Android Studio 2.0 with the latest Android SDK Tools 24.4.1 and Android SDK Build Tools 23.0.2
I've even tried to download Gradle 2.10 and put it manually on android-studiogradle folder, but no luck.
Any help would be appreciated.
You need to change File > Settings > Builds,Execution,Deployment > Build Tools > Gradle >Gradle home path
On Mac OS, change the path in Android Studio > Preferences > Builds,Execution,Deployment > Build Tools > Gradle >Gradle home
Or set Use default gradle wrapper and edit Projectgradlewrappergradle-wrapper.properties
files field distributionUrl
like this
distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip
Open Preference and search for Gradle or Navigate to Builds, Execution, Deployment > Build Tools > Gradle
Then change Project-Level setting to Use default gradle wrapper (recommended)
Or keep local gradle distribution option and set Gradle home to /.../gradle-2.10
Make Sure that Gradle version is already setup to 2.10 in Module Settings
On the Project Window, right click on your project then select Open Module Settings
(⌘+↓)
Update
Gradle Version: 3.3 Android Plugin version: 2.3.1
更简单的方法是进入: 打开模块设置(您的项目)>项目> Gradle版本并输入2.10
链接地址: http://www.djcxy.com/p/77320.html