Sahil Silare
Sahil Silare

Reputation: 333

Emulator not detected in VSCode using Flutter

I am trying to use an emulator and when I launch it, it starts loading but its not getting conneccted in VSCode. How can I connect so that VSCode detects it?

When I start the adb-server, I get the following output

adb server version (40) doesn't match this client (39); killing...
ADB server didn't ACK
Full server startup log: /tmp/adb.1000.log
Server had pid: 31775
--- adb starting (pid 31775) ---
adb I 11-22 22:58:24 31775 31775 main.cpp:57] Android Debug Bridge version 1.0.39
adb I 11-22 22:58:24 31775 31775 main.cpp:57] Version 1:8.1.0+r23-5~18.04
adb I 11-22 22:58:24 31775 31775 main.cpp:57] Installed as /usr/lib/android-sdk/platform-tools/adb
adb I 11-22 22:58:24 31775 31775 main.cpp:57] 
adb I 11-22 22:58:24 31775 31775 adb_auth_host.cpp:416] adb_auth_init...
adb I 11-22 22:58:24 31775 31775 adb_auth_host.cpp:174] read_key_file '/home/sahil/.android/adbkey'...
adb I 11-22 22:58:24 31775 31775 adb_auth_host.cpp:391] adb_auth_inotify_init...
adb server killed by remote request

* failed to start daemon
error: cannot connect to daemon

flutter doctor logs:

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.9.1+hotfix.4, on Linux, locale en_GB.UTF-8)

[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[!] Android Studio (version 3.2)
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
[!] IntelliJ IDEA Ultimate Edition (version 2019.2)
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
[✓] VS Code (version 1.35.1)
[!] Connected device

! Doctor found issues in 3 categories.

flutter devices logs:

No devices detected.

Run 'flutter emulators' to list and start any available device emulators.

Or, if you expected your device to be detected, please run "flutter doctor" to
diagnose potential issues, or visit https://flutter.dev/setup/ for troubleshooting
tips.

• Device emulator-5554 is offline.

Upvotes: 6

Views: 24294

Answers (7)

Sourabh Ghosh
Sourabh Ghosh

Reputation: 1

For my case, I haven’t installed the "Flutter Support and Debugger for VS code". Then I have installed that plug-in. Automatically then it is showing in the status bar. enter image description here

Upvotes: 0

Albusaidy
Albusaidy

Reputation: 71

For my case I launched the emulator using cold boot whenever VS code did not detect the emulator. I hope this helps someone.

Upvotes: 0

stuckoverflow
stuckoverflow

Reputation: 712

In my case, VSCode was not detecting any devices, but flutter doctor was. This is what worked for me on Ubuntu 20.04.4:

sudo kill -9 $(pgrep Electron) to kill all instances of VSCode and then restart VSCode.

Upvotes: 1

Subroto Basak Shawon
Subroto Basak Shawon

Reputation: 51

  1. Disabled and Enabled Flutter plugin
  2. Disabled and Enabled Dart plugin
  3. Restarted Vscode
  4. Restarted PC

Try these four options one by one, hope the problem will be solved.

Upvotes: 2

rvng
rvng

Reputation: 212

In my case, because I moved the android SDK to different path, not default in c:, so the vs code wont detect the emulator.

resolve

  1. Go to Android SDK folder
  2. find a folder called "platform-tools"
  3. copy the path, and add it to environment variables
  4. restart vs code

Upvotes: 3

Dip Chowdhury
Dip Chowdhury

Reputation: 163

Most of the time, a simple restart for IDE and Emulator is enough. But in some cases restarting the machine is best. Among these solutions, you can try to restart adb server.

adb kill-server
adb start-server

Optional: Also, If you want to use your device without cable, you can root your device, then you can use adb over the air (If your device doesn't have that functionality. Modern devices have this option built-in.).

Upvotes: 3

Jose Barranco
Jose Barranco

Reputation: 122

The device does not have permissions. Run flutter doctor and flutter devices, if no devices appear to be connected (in this case, emulated) you need to kill the adb-server, open the emulator and then start the adb-server.

If the issue still persists after this, try flutter doctor --android licenses

And if it still continues, please post your flutter doctor & flutter devices output.

Regards

Upvotes: 3

Related Questions