Force Android Studio to download and install gradle 1.10 or 1.1

后端 未结 7 1451
眼角桃花
眼角桃花 2020-12-24 02:50

I installed Android Studio 0.5.1 and my project is not working any more. Error it provides is:

The project is using an unsupported version of Gradle. Pleas         


        
相关标签:
7条回答
  • 2020-12-24 02:59

    I encountered this problem when i tried to import an gradle project from github. There was no gradle wrapper in the project. I created a new android project in android studio and copied gradle folder to the project that i get from github. Then in the settings of the project in gradle section,i chose the "use default gradle wrapper". Then problem is solved.

    0 讨论(0)
  • 2020-12-24 03:02

    just delete gradle wrapper file and gradle properties file , and reload your project , auto update will make the rest

    0 讨论(0)
  • 2020-12-24 03:03

    I managed to resolve the same issue by downloading the desired version of gradle from the website: http://www.gradle.org/downloads

    Then i extracted the zip file and copied the iib folder into the Android studio gradle lib.

    So for example:

    Downloads/gradle-1.10/lib/ copy to /Applications/Android Studio.app/plugins/gradle/lib/

    Then reload android studio and it should work.

    0 讨论(0)
  • 2020-12-24 03:05

    I started getting this error because I synced to a previous commit, which had a subproject with

        classpath 'com.android.tools.build:gradle:0.7.+'
    

    in its build.gradle. Changing this to 0.9.+ fixed the error.

    0 讨论(0)
  • 2020-12-24 03:11

    I recommend to use Gradle's newest version 1.11. The Android tools team will drop the support for older Gradle versions (that's what I would do).

    After you've changed your wrapper from 1.10 to 1.11, you need to check that your wrapper is enabled in the gradle settings.

    Don't forget to synchronize your project after that!

    enter image description here

    0 讨论(0)
  • 2020-12-24 03:14

    Try this:

    Modify the gradle-wrapper.properties

    distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip
    

    and your build.gradle

    compileSdkVersion 19 
    buildToolsVersion "19.0.1"
    

    running:./gradlew clean assemble in the terminal

    Also you may want to read this

    glhf

    Update, he solved it:

    https://plus.google.com/101589574290830309525/posts/7YzcE6YpfwK

    I finally solved it, by removing .idea folder and all .iml files and imported project as new one.

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