How to show Android Gradle Plugin update dialog again

Viewed 4229

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

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.

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.

With the build.gradle file open in Android Studio, hover your mouse over the yellow text and choose "More actions..." -> "Invoke Upgrade Assistant"

Related