Gradle version 2.10 is required. Current version is 2.8 Error

扶醉桌前 提交于 2019-11-29 06:02:41
Learning Always

update your android studio version to 1.5.1. Your problem will be solved. If your android version is updated. Try it out:

change Settings > Builds,Execution,Deployment > Build Tools > Gradle >Gradle home path OR

set Use default gradle wrapper and edit Project\gradle\wrapper\gradle-wrapper.properties files field distributionUrl like this:

distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip

try this

You just need to update the path for gradle directory from gradle-2.8 to gradle-2.10

Steps:

Click on file ->settings ->gradle

Choose "Use local gradle distribution" radio button in the project-level setting

open and paste the path of the directory of gradle-2.10

( Note : Path will be similar to where gradle-2.8 was earlier present if you have done any update for android studio, or else you have to mention the path of download directory if you have downloaded the standalone gradle distribution from http://gradle.org/gradle-download/ )

change the gradle 2.8 to gradle 2.10 in file ->settings ->gradle

Apply the settings and rebuild the project.

Option 1

First Try: Update gradle-wrapper.properties file located in [Project\gradle\wrapper\gradle-wrapper.properties] update distributionUrl distributionUrl=https://services.gradle.org/distributions/gradle-2.10-all.zip

if above doesn't work follow following steps as well

Option 2

Step1: Check gradle version: Gradle generally is installed in folder: C:\Program Files\Android\Android Studio\gradle\gradle[version number] eg gradle-4.1

Step2: update gradle is installed, download the gradle from https://services.gradle.org/distributions/ for you download it https://services.gradle.org/distributions/gradle-2.10-bin.zip and place it in studio gradle folder or some where else

step 3: update gradle path for (project specific or global as required) File > Settings > Builds,Execution,Deployment > Build Tools > Gradle >Gradle home path

Option 3 File>Project Structure>Project>Gradle version, change it to 2.10

for this question change File>Project Structure>Project>Gradle version from 2.8 to 2.10 just so

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!