<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Unable to debug on device: no permissions</title>
  <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=4989040" />
  <subtitle>Unable to debug on device: no permissions</subtitle>
  <id>http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=4989040</id>
  <updated>2013-05-18T14:01:54Z</updated>
  <dc:date>2013-05-18T14:01:54Z</dc:date>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=6359308" />
    <author>
      <name>Justin Lordi</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=6359308</id>
    <updated>2012-08-28T06:05:56Z</updated>
    <published>2012-08-28T06:05:56Z</published>
    <summary type="html">Now that Cius is apparently discontinued, could anyone please tell me an easy way to "Allow Unknown.." and do things like upgrade my Cius to Android 4.0?
 
Thanks!
 
DesigningJustin@gmail.com</summary>
    <dc:creator>Justin Lordi</dc:creator>
    <dc:date>2012-08-28T06:05:56Z</dc:date>
  </entry>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989153" />
    <author>
      <name>Dave Vedder</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989153</id>
    <updated>2012-01-10T17:14:14Z</updated>
    <published>2012-01-10T17:14:14Z</published>
    <summary type="html">Hooray!  Thanks all for helping me through this. I now have my app running on a Cius.  Turns out I needed to add the generic google vendor line in my 51-android.rules file, *and* kill-server and run adb devices as root before it clicked. 

Thanks again, I really appreciate the help.

-Dave</summary>
    <dc:creator>Dave Vedder</dc:creator>
    <dc:date>2012-01-10T17:14:14Z</dc:date>
  </entry>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989126" />
    <author>
      <name>David Staudt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989126</id>
    <updated>2012-01-10T16:53:28Z</updated>
    <published>2012-01-10T16:53:28Z</published>
    <summary type="html">For Ubuntu, you don't have to mess with the udev rules if you execute ADB via sudo.  If you do prefer to run ADB as a normal user, then the udev rules should enable that to work.</summary>
    <dc:creator>David Staudt</dc:creator>
    <dc:date>2012-01-10T16:53:28Z</dc:date>
  </entry>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4987885" />
    <author>
      <name>James Catalano</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4987885</id>
    <updated>2012-01-10T16:49:14Z</updated>
    <published>2012-01-10T16:49:14Z</published>
    <summary type="html">Dave

Another solution is to follow the setup instructions found here for properly setting up hardware devices for debugging: 

http://developer.android.com/guide/developing/device.html

Under step 4 of "Setting up a Device for Development", you'll see system specific instructions. Yours will obviously be for Ubuntu Linux, which is the 3rd bullet. Now technically, you should have had to do this for your other Android devices, so either you lucked out with the other ones or you did this a while ago and just forgot.

When you get to the part about a USB Vendor ID, you can use the one for Google (18D1) in this instance.

James Catalano</summary>
    <dc:creator>James Catalano</dc:creator>
    <dc:date>2012-01-10T16:49:14Z</dc:date>
  </entry>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989101" />
    <author>
      <name>David Staudt</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989101</id>
    <updated>2012-01-10T16:44:05Z</updated>
    <published>2012-01-10T16:44:05Z</published>
    <summary type="html">When I've seen the 'No Permissions' message in the past it's either:
 
- Running ./adb not as root.  E.g.: 
 
$ sudo ./adb devices
 
Or the ADB server service was started previously as non-root, in which case I had to kill the server first:
 
$ sudo ./adb kill-server
$ sudo ./adb devices</summary>
    <dc:creator>David Staudt</dc:creator>
    <dc:date>2012-01-10T16:44:05Z</dc:date>
  </entry>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989077" />
    <author>
      <name>Dave Vedder</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989077</id>
    <updated>2012-01-10T16:32:02Z</updated>
    <published>2012-01-10T16:32:02Z</published>
    <summary type="html">Thanks for the quick replies!

I'm running Ubuntu Linux (11.10)   Again, I've plugged in a couple phones and a Motorola Xoom, and they are "seen" and I can debug on them. 

Thanks,

Dave</summary>
    <dc:creator>Dave Vedder</dc:creator>
    <dc:date>2012-01-10T16:32:02Z</dc:date>
  </entry>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989069" />
    <author>
      <name>Amanda Whaley</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989069</id>
    <updated>2012-01-10T16:27:19Z</updated>
    <published>2012-01-10T16:27:19Z</published>
    <summary type="html">Dave -

Are you using Windows?  If so, you will need to install the USB drivers.  You can find out more information about this topic here [url=http://developer.cisco.com/web/cius-developer/usb-driver-installation]http://developer.cisco.com/web/cius-developer/usb-driver-installation[/url]

thanks
Amanda</summary>
    <dc:creator>Amanda Whaley</dc:creator>
    <dc:date>2012-01-10T16:27:19Z</dc:date>
  </entry>
  <entry>
    <title>RE: Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4987748" />
    <author>
      <name>James Catalano</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4987748</id>
    <updated>2012-01-10T16:26:39Z</updated>
    <published>2012-01-10T16:26:39Z</published>
    <summary type="html">Can I ask what operating system you are running? These USB debugging problems are usually platform-related.

James Catalano</summary>
    <dc:creator>James Catalano</dc:creator>
    <dc:date>2012-01-10T16:26:39Z</dc:date>
  </entry>
  <entry>
    <title>Unable to debug on device: no permissions</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989039" />
    <author>
      <name>Dave Vedder</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4989039</id>
    <updated>2012-01-10T18:02:42Z</updated>
    <published>2012-01-10T16:17:50Z</published>
    <summary type="html">After recieving a Cius loaner, I finally got 'Unknown Sources' and 'USB debugging' checked. I was never propmpted for a firmware update, so I guess there was none?  So in theory, I should be ready to debug on device, correct?  However, I still can't. When I plug in via USB and try to run, the device chooser shows a device with a serial number of "???????????" an AVD name of N/A and a Target of "unknown".  Every other device I plug in works properly.  Running ./adb devices gives me:
 
List of devices attached 
????????????	no permissions


Any suggestions on how to actually test an app on this device? 


Thanks.</summary>
    <dc:creator>Dave Vedder</dc:creator>
    <dc:date>2012-01-10T16:17:50Z</dc:date>
  </entry>
</feed>

