Change Android Development Device Id
I'd like to connect multiple android devices to the same machine and manage them by the adb. Unfortunately some android models show the same development device id to adb. Is there
Solution 1:
Not without altering adb. The adb "server" (i.e. the part that runs on your workstation) just uses the value it gets from the device, which are in turn set by the bootloader. You could in theory modify the adb server to include additional information in the string, such as the USB device number assigned when the device was plugged in (if you're on Linux, run lsusb
and imagine the "bus" and "device" values are included in the device ID).
You may also be able to do this by installing a custom ROM.
Post a Comment for "Change Android Development Device Id"