Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I can't find adb_usb.ini file in .android folder?

Tags:

android

i have to add a device for debugging. we can do that by adding a hex value in adb_usb.ini file. But i am not able to locate adb_usb.ini file.

Anyone is having idea, why it is not there in .andorid folder.

like image 502
Saif Avatar asked Nov 07 '13 07:11

Saif


1 Answers

If the adb_usb.ini file is not present in the .android folder, we can create it. It should contain device vendor hex values, one per line.

Steps for Windows 7/8:

  1. Go to C:\Users\<user name>\.android
  2. Create a file.
  3. Rename to adb_usb.ini
  4. Paste the following lines:

    # add your vendor IDs, one per line
    0x1949
    0x18D1
    
like image 55
Saif Avatar answered Oct 18 '22 14:10

Saif