How to show Android Gradle Plugin Update Dialog again

I updated Android Studio and the dialog for Gradle Update Plugin popped up. I accidentally clicked Don't show again for this project. How can I display the dialog again?

+3


source to share


1 answer


According to this answer, you should look for the file .idea/workspace.xml

in your project directory and remove the properties line below.

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

      



Also, it is related to a specific gradle version, so if you update it once, you will see the dialog again next time.

+3


source







All Articles