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
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.
just delete gradle wrapper file and gradle properties file , and reload your project , auto update will make the rest
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.
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.
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!
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
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.