14

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.

Saif
  • 812
  • 1
  • 9
  • 18
  • 1
    What platform are you on? there is no .ini configuration file in Linux. – JoxTraex Nov 07 '13 at 07:44
  • http://stackoverflow.com/questions/8369341/how-can-i-open-android-adb-usb-ini-for-the-kindle-fire?answertab=oldest#tab-top – vinay Maneti Nov 07 '13 at 07:59
  • hi, i am using windows 7. i am having access to .android folder. i assume adb_usb.ini should be there. .android folder is not hidden as well. – Saif Nov 07 '13 at 09:42

1 Answers1

27

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
    
Matthew Read
  • 1,365
  • 1
  • 30
  • 50
Saif
  • 812
  • 1
  • 9
  • 18