Ernest Hilvano
Ernest Hilvano

Reputation: 513

Android adb error (error: protocol fault (couldn't read status): Invalid argument)

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

Answers (1)

Dan
Dan

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

Related Questions