After installing android-tools-adb
and android-tools-fastboot
from a ppa
and adding:
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666", GROUP="plugdev", SYMLINK+="android%n"
to /etc/udev/rules.d/51-android.rules
(plus chmod a+r ...
), and 0x18d1
to ~/.android/adb_usb.ini
, after issuing:
$ sudo udevadm control --reload-rules
$ sudo service udev restart
$ sudo udevadm trigger
adb devices
still refuses to see anything (with or without sudo
). It doesn't matter if I start with VolUp in Recovery mode
, or not, nothing happens (restarts included). The problem is, somewhere along the road I performed a factory reset, so now I'm stuck on the FRP screen (papers, along with the darn PIN, not available anymore). Since lsusb
has no problems, I have to deduce that the cable is not the problem. However, fastboot
seems to work (if I get into the menu), but I can't do anything with it.
Unfortunately, USB debugging was not enabled prior to this, and from what I read there is a way to enable it, but that implies adb
seeing my phone (as if with a "broken screen"). OTOH, by and large I see that USB debugging must be enabled in order for adb
to work. That's very confusing.
I'm out of ideas. Is there anything else that can be done? Contacting seller & co are out of the question -- this was a gift, long time ago, moved out.
adb
without enabling user debugging Even if you could you are stuck with FRP not allowing you to log into your device – beeshyams Dec 23 '23 at 00:17data
but that no longer exists due to factory reset, I think (bummer). – a concerned citizen Dec 23 '23 at 08:35Apply update from ADB
,adb
can see the phone as "sideload". So, some hopes? – a concerned citizen Dec 23 '23 at 17:02