Reputation: 903
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
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:
Upvotes: 2