How to show Android Gradle Plugin Update Dialog again
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 to share