Reputation: 39
Here's the problem, I'm using Android Studio 2.3.3 and executing programs on my Android Lenovo K5 plus, last time when the apk request arrived on my phone I checked on "always allow this computer" and hit ok, after that my connected device is displayed as offline on Virtual Device dialogbox.
I tried using different USB cable, Different USB port (PC) And revoking USB authorization from Developer options
Nothing helped, how can I reset/clean authorized devices on my phone or Android studio?
Upvotes: 1
Views: 1599
Reputation: 29672
In studio terminal fire following commands,
adb kill-server
after doing it fire this
adb start-server
Now re-connect your device.
Upvotes: 1