View previous topic :: View next topic |
Author |
Message |
wjholden l33t
Joined: 01 Mar 2004 Posts: 826 Location: Augusta, GA
|
Posted: Sat Jul 21, 2012 5:51 am Post subject: Nexus 7 Android Development and the dreaded ???????????? |
|
|
I've been doing Android development for a while, but udev didn't like my new Nexus 7. adb devices gave a cryptic error: Code: | List of devices attached
???????????? no permissions | From http://stackoverflow.com/questions/3429959/why-is-eclipses-android-device-chooser-not-showing-my-android-device I created a file /etc/udev/rules.d/51-android.rules containing (based on lsusb output) Code: | SUBSYSTEM=="usb", SYSFS{idVendor}=="18d1", MODE="0666" | and set sudo chmod a+r /etc/udev/rules.d/51-android.rules. After restarting udev with sudo /etc/init.d/udev restart and also restarting ADB with adb kill-server everything now works perfectly: Code: | john@sisig ~/Desktop $ adb devices
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
List of devices attached
015d24a81737f00a device |
|
|
Back to top |
|
|
yngwin Retired Dev
Joined: 19 Dec 2002 Posts: 4572 Location: Suzhou, China
|
|
Back to top |
|
|
solamour l33t
Joined: 21 Dec 2004 Posts: 726 Location: San Diego, CA
|
Posted: Tue Jan 30, 2018 10:25 pm Post subject: Re: Nexus 7 Android Development and the dreaded ???????????? |
|
|
"/etc/udev/rules.d/51-android.rules" fixed the problem for me as well. Thank you.
__
sol |
|
Back to top |
|
|
|