Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio 2.2 Gradle update fails

New Android Studio ask me about Gradle plugin update

enter image description here

But it fails, when I press Update button. Failed to update the version of Android Gradle Plugin

enter image description here

How to fix this?

like image 398
Sergey Shustikov Avatar asked Sep 20 '16 10:09

Sergey Shustikov


1 Answers

Looks like it's an inner bug of Android Studio

I just change manually

compile 'com.android.tools.build:gradle:2.1.3'

in root build.gradle to

compile 'com.android.tools.build:gradle:2.2.0'

And all started working.

like image 90
Sergey Shustikov Avatar answered Oct 17 '22 06:10

Sergey Shustikov