1

I'm unable to detect android device using:-

adb devices

Output:-

List of devices attached
3536f11e    no permissions (verify udev rules); see [http://developer.android.com/tools/device.html]

It keeps saying, no permissions.

2 Answers2

3

First Kill the existing running instace of adb server by:-

adb kill-server

Then, run the adb devices command with sudo as :-

sudo adb devices

This will start the adb daemon and list your android device without permission error.

nandal
  • 2,206
  • 1
  • 11
  • 19
1

Check the permission pop up on your android Device. Accept the permissons on Android Device after running:-

sudo adb devices 

It will list your device with device id along with permissions.