Reputation: 513
Help, im getting the following though ive already reinstalled/restarted the adb
xx@x-PC /d/asdk/platform-tools $ adb devices List of devices attached error: protocol fault (couldn't read status): Invalid argument
Upvotes: 1
Views: 6846
Reputation: 872
On OS X I fixed it by killing the adb process and then starting the server:
$ killall adb
$ adb start-server
Upvotes: 2