Adb and Android Studio do not detect YUPHORIA

I just bought Yuphoria. But adb cannot detect it. I tried drivers from different vendors, but they are useless. Now my Android studio cannot detect my Yuphoria. I searched on the internet and many people have this kind of problem. I tried uninstalling and reinstalling adb drivers, but again to no avail. Does this mean that there is a problem with my device? What should I do? I used to use REDMI 1s, and there were no problems with Android Studio.
In my case, in the device manager, it shows the Android Composite ADB interface. I saw a video on youtube and on this computer computer it was showing something starting with YU. Please tell me what to do? And is my device ok?

+4
source share
3 answers

After a lot of searching, I finally found this solution on the Yu forum where DoomLord answered and it worked. Basically, I had to add the yuphoria device id to the adb_usb.ini file.

Open the Windows command prompt (Windows Key + R) Ènter:% HOMEPATH% .android and then click OK. This will open the hidden .android folder in the current user's home folder. There you will see a file with the name: adb_usb.ini Edit the file using Notepad or Editplus / Notepad + Just add the text: 0x2a96 without pressing any additional input / new line characters, save the file

now go to the command line and restart adb: adb kill-server adb

Now the device will start to display!

+9
source

For MAC Users

cd ~ / .android /

cat → adb_usb.ini
0x2a96

ctrl-d//

adb kill-server
adb start-server

+2

adb_usb.ini ,

  • C:\Users \.android
  • Create a new adb_usb.ini file

enter image description here

  1. Enter 0x2a96 and save the file

enter image description here

Open CMD or terminal if using Mac

> adb kill-server

> adb start-server

> adb devices

enter image description here

+2
source

Source: https://habr.com/ru/post/1599632/


All Articles