Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio not stopping for asking to update Gradle

Since the latest version, Android Studio is annoying me that

It is strongly recommended that you update Gradle to version 2.14.1 or later.

enter image description here

Sadly I can´t update it currently, because it breaks my project completely and I need to do research to get it working, so I´m pressing

"Don´t remind me again for this project"

But it ignores it and it pops up over and over again.

Is there any trick to get rid of it?

like image 798
Marian Klühspies Avatar asked Sep 11 '16 09:09

Marian Klühspies


1 Answers

This dialog should store:

<component name="PropertiesComponent">
  ...  
  <property name="show.do.not.ask.upgrade.gradle.plugin.version" value="2.2.0" />
  ...
</component>

in your .idea/workspace.xml file.

As you can see it seems to be version specific, hope this helps.

If you clicked Don't remind me again for this project. by accident, remove that line

like image 150
nana Avatar answered Sep 24 '22 01:09

nana