Reputation: 29434
I'm trying to enable USB debug on my ASUS ZenWatch 2. What I've done so far:
Settings -> About
and tapped on the Build Number
7 times. Now I'm developer.Developer Settings
and tapped on Enable ADB debug
.Typed adb devices
in console and here's what I see:
artem@home-pc:~/Downloads$ adb devices
List of devices attached
0926d8da031f9091 device
???????????? no permissions
First device is my already enabled Nexus 5, second is the ASUS ZenWatch 2.
Okay, I remember that on Linux machines I also need to add a new entry to my /etc/udev/rules.d/51-android.rules
so the system can detect my device. Now, my 51-android.rules
file looks like this:
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666", GROUP="plugdev"
SUBSYSTEM=="usb", ATTR{idVendor}=="0b05", MODE="0666", GROUP="plugdev"
Again, first line is for phone, second is for watches.
Nothing changes, adb
still does not recognize my device.
Am I missing something? Does ASUS ZenWatch 2 support USB debug at all?
Upvotes: 2
Views: 944