Can't find "Sync Project with Gradle Files" button in IntelliJ IDEA

Viewed 47465

I just added the google-play-services-lib library to my project and am stuck where I need to "sync the project with gradle files", but this button does not exist on IntelliJ 13.0.1. Is there an alternative to this function?

7 Answers

In my Case, One of My plugin, Android support got disabled due to some reason , As soon as I enabled it , and sync it the button automatically showed.

Go to File > Settings > Plugin > Android support(Tick this).

and sync your project.

Just in case someone who uses Android studio is experiencing this issue (can't find sync gradle feature), I'm posting my answer here. I'm new to Android, so I had no idea to fix this. What I did was I cleared the AS cache.

File > Invalidate Caches / Restart

Voila! The Gradle sync button is now there.

Related