Reputation: 500
Today I wanted to learn Flutter. I read through the docs and found out that I can run my app on my real device (Oppo F5 in this case).
I do have enabled USB Debugging. MTP works fine; I can transfer files as usual).
When I enable USB Debugging, a driver install window pops up (I'm using Windows 7 x64). It tries to detect ADB Interface from Windows Update and fails; then tries to install from the preconfigured driver folders, then fails.
Upvotes: 1
Views: 1542
Reputation: 500
So, after a bit of Googling, I found out a solution. I just needed to install a thing called "OPPO Preloader Driver". Thank you everyone who participated in this thread!
Upvotes: 1
Reputation: 334
your need Install a USB devices Drivers for (Oppo co) :
Then The command is executed in cmd to connect device with VS Code:
"yourPathSDK\platform-tools\adb.exe" connect 127.0.0.1:6555
Upvotes: 0