Force Android Studio to download and install gradle 1.10 or 1.1

亡梦爱人 提交于 2019-11-29 22:23:33

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.

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.

Try to change buildToolsVersion to 19.0.3 and don't forget to install it in the sdk manager

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 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 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!

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

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