Nicolas Gervais
Nicolas Gervais

Reputation: 36714

Where is the "Sync Now" button in Android Studio?

I'm following this Tensorflow tutorial. At the bottom, it says click Sync Now. What exactly is that?

Upvotes: 5

Views: 12863

Answers (4)

Suman Sahoo
Suman Sahoo

Reputation: 41

In 2021 the name of the pption has changes to " Reload All from Disk" in the File dropdown menu ( same as ctrl+alt+y )

Upvotes: 4

KalanaChinthaka
KalanaChinthaka

Reputation: 321

You can use File -> Sync Project with Gradle Files to sync the project manually.

Upvotes: 3

s.mhmd
s.mhmd

Reputation: 307

press Ctrl+Alt+y to Sync Project with Gradle Files

Upvotes: 3

Pedro Antonio
Pedro Antonio

Reputation: 290

It's the "Sync Project with Gradle Files". And you can press it manually whenever you want.

Generally you want to do it when you change some configs in your Gradle Files like adding dependencies, changed signing configs, change version code, etc.

enter image description here

Upvotes: 11

Related Questions