Set Android Debugging Permissions: Difference between revisions

From JoBaPedia
Jump to navigation Jump to search
(New page: = Problem Android Debugger adb cannot access real devices as non-root. = Solution Write an udev rule to change permisions on the device to allow user joachim to debug a HTC device with ...)
(No difference)

Revision as of 15:02, 19 October 2012

= Problem

Android Debugger adb cannot access real devices as non-root.

= Solution

Write an udev rule to change permisions on the device to allow user joachim to debug a HTC device with usb vendor id 0x0bb4

create file /etc/udev/rules.d/70-android.rules with following content

== OpenSuse up to 12.1

SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0600", USER="joachim"

== OpenSuse 12.2

SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0600", OWNER="joachim"