14

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?

Marian Klühspies
  • 15,824
  • 16
  • 93
  • 136

1 Answers1

26

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

nana
  • 4,426
  • 1
  • 34
  • 48