Application Update for Android Studio 2.2 Gradle

New Android Studio Ask Me About Gradle Plugin Update

enter image description here

But it does not work when I click the refresh button. Failed to update version of Android Gradle Plugin

enter image description here

How to fix it?

+7
android android-studio gradle
source share
2 answers

It looks like this is an internal error of Android Studio

I just change manually

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

in the root directory of build.gradle to

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

And everyone began to work.

+3
source share
0
source share

All Articles