Gradle version 2.10 is required. Current version is 2.8 Error

后端 未结 4 1122
孤城傲影
孤城傲影 2020-12-17 16:49

Following things are using in the project-

The android studio version - 2.0 Preview 4.
ANDROID_BUILD_MIN_SDK_VERSION=9
ANDROID_BUILD_TARGE

相关标签:
4条回答
  • 2020-12-17 17:07

    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.

    0 讨论(0)
  • 2020-12-17 17:08

    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

    0 讨论(0)
  • 2020-12-17 17:13

    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

    0 讨论(0)
  • 2020-12-17 17:29

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

    0 讨论(0)
提交回复
热议问题