1

I am using USB debugging with my Cubot S208 for my Android App.

If I type adb devices into command line I receive the following:

0123456789ABCDEF device

So clearly the device is authorized.

However, in Android Studio I receive the following message:

for device 0123456789ABCDEF: device unauthorized. Please check the confirmation dialog on your device.

Why is this the case?

The device is recognized by Android studio under the name "Cubot S208" properly recognizes the debuggable applications too.

So everything seems fine.

I have ALWAYS allowed USB debugging from my Laptop when the message came up on my phone screen.

Any ideas?

1
  • my symphony pd1 phone, running kaios, is showing the same device code and unauthorized in cmd
    – Whois7pi
    Commented Nov 3, 2022 at 16:52

2 Answers 2

5

for device 0123456789ABCDEF: device unauthorized. Please check the confirmation dialog on your device.

Execute these adb commands:

adb kill-server 
adb start-server

After that reconnect your device and tick debugging option on device.

1
  • once restart device, after that follow steps, It works fine for me everytime Commented Jun 23, 2015 at 6:22
0

Try clearing the debugging authorizations from your phone, disconnect it and reconnect it. Failing that try killing adb and then try launching

Not the answer you're looking for? Browse other questions tagged or ask your own question.