I want to be able to connect my Nexus 7 in order to test my applications from Eclipse on the physical device.
I followed this Google guide.
My /etc/udev/rules.d/51-android.rules file contains this :
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e42", MODE="0666"
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e40", MODE="0666"
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4e41", MODE="0666"
The device is configured to use "Camera (PTP)" and "USB debugging" is checked too.
But adb devices lists no device.
What have I missed ?
