I've updated Android Studio and the dialog for Gradle Plugin update appeared. I've accidentally clicked Don't show again for this project. How can I display the dialog again?
4 Answers
According to this answer you should look for a file .idea/workspace.xml
in the project directory and remove property line below.
<component name="PropertiesComponent">
...
<property name="show.do.not.ask.upgrade.gradle.plugin.version" value="2.2.0" />
...
</component>
Also, it's related to a specific gradle version, so if you update it once, you'll see the dialog again the next time.

- 2,096
- 4
- 30
- 41
-
20Similarly if you clicked the remind me tomorrow and want to see it again immediately, the property is :
delete them, re-open the project, and the dialog should appear. – AChez9 May 31 '18 at 18:45
inside the project directory open the file .idea/workspace.xml find the line (search for upgrade word)
<property name="sync.plugin.last.upgrade.timestamp" value="154032093109" />
if you change this to a smaller integer like 15403293109 (removing one number from middle) will make the last check date to a previous time and the upgrading dialog will be visible again.

- 3,324
- 1
- 26
- 27
In Android Studio Project, Go to
-> File -> Settings -> Version Control -> Confirmation
Here you will see "Display Options dialog when these commands are invoked".
Now enable the check box "Update". That's all.

- 8,084
- 8
- 48
- 62

- 148
- 13
-
1Even tho you didn't answer this question, you answered my question, thanks! – ildar ishalin Feb 11 '20 at 04:38
-
1Unchecking/checking this and then running Gradle sync really makes AS display update dialog. Thanks! – Vadim Kotov Apr 27 '21 at 16:16
With the build.gradle file open in Android Studio, hover your mouse over the yellow text and choose "More actions..." -> "Invoke Upgrade Assistant"

- 7,243
- 3
- 24
- 12