My adb.exe is not working properly in android studio. When I tried to kill the server using adb kill-server
with command prompt. even I tried to re-install android studio and sdk but still same problem. no device is detecting and saying 'Could not read Ok from ADB server'. what else to do?
Asked
Active
Viewed 181 times
0

0xDEADC0DE
- 2,453
- 1
- 17
- 22

bhavya
- 27
- 5
-
You need to start adb on different port number like this `adb -P 49133 start-server`. Default port number for adb is currently in use by some other application on your PC. – Ankur Jain Nov 24 '16 at 08:10
-
http://stackoverflow.com/a/29524143/1778421 – Alex P. Nov 24 '16 at 15:24
-
'You need to start adb on different port number like this adb -P 49133 start-server. Default port number for adb is currently in use by some other application on your PC.' thank you it worked. – bhavya Nov 25 '16 at 04:34