kai.zhao
kai.zhao

Reputation: 83

Unable to activate Dart Devtools in Android Studio

I have no idea about "Activaing Dart DevTools". I had not get any response for a long time! andorid studio progress

Upvotes: 8

Views: 6094

Answers (5)

Raimondas Lukosius
Raimondas Lukosius

Reputation: 100

Click on this in your android studio enter image description here

Then you will get a link like in this picture enter image description here

At the same time browser will open this enter image description here There you just paste your generated link and connect

Upvotes: 4

Hzine
Hzine

Reputation: 123

for new versions of flutter plugin and android studio, there is no icon for Dart Devtools, instead, the terminal will give you a link like:

The Flutter DevTools debugger and profiler on sdk gphone64 x86 64 is available at: http://127.0.0.1:9100?uri=http://127.0.0.1:62203/l8yx-VW8bgA=/

you just click on it to open the browser.

Upvotes: 1

JAgüero
JAgüero

Reputation: 687

You can also do it easier by clicking on the Open Flutter DevTools button that shows in the Run console in Android Studio. It's blue, on the right of the Hot Reload and the Hot Restart.

Upvotes: 1

JAgüero
JAgüero

Reputation: 687

On Android Studio, go to the terminal and write the command dart devtools. Then wait for a while. It will open a tab in your browser and it will give you an address like this Serving DevTools at http://127.0.0.1:9234 that you need to write as the URL to connect.

Upvotes: 1

Robert
Robert

Reputation: 96

  • Android Studio : Tools -> flutter -> Open Flutter dev tool
  • VS Code: Search for Dart: in the command palette, then click on open DevTools

Upvotes: 6

Related Questions