0

My android studio is doesn't see my devices virtual/physical. (I am using ubuntu)

I've already tried change the platform-tools in home/user/android/sdk, delete and download the avd and my physical phones developer settings and debugging settings is on.

This is the screenshot of the problem.

snap

By the way there is no error messages.

Nipun Tharuksha
  • 2,496
  • 4
  • 17
  • 40

1 Answers1

0

You can try these commands;

adb kill-server // kill server
adb start-server // start server
adb devices // show all active devices

If this problem will not be resolved, please restart Android Studio

secret
  • 742
  • 1
  • 7
  • 24
  • Thanks for help. It works, android studio saw the devices. But when I run it's running with a error: " Unable to locate a development device; please run 'flutter doctor' for information about installing additional components. " (i am developing with flutter) and then when I write "flutter doctor" in terminal it's running with "flutter: command not found" even flutter plugins are downloaded – Furkan Palabıyık Sep 02 '19 at 12:39
  • You need to update path. You can more information from https://stackoverflow.com/a/50653621/6136201 – secret Sep 02 '19 at 13:13