gianpaolo
gianpaolo

Reputation: 903

Why Android studio keeps doing Gradle sync when launching the debugger?

Why, if I do a gradle sync and then I launch a debug session, Android Studio starts another gradle sync? Is there a way to stop this?

Upvotes: 0

Views: 59

Answers (1)

Remon Shehatta
Remon Shehatta

Reputation: 1480

because it rebuilds the app. then attach the debugger to the application.

in case your app is already running and you didn't change the code you can use "Attach debugger to Android process" as shown in the picture:

enter image description here

Upvotes: 2

Related Questions