Build Error

What this error means? What should I do to resolve this.
Error building Player: CommandInvokationFailure: Unable to kill the adb server. Please make sure the Android SDK is installed and is properly configured in the Editor. See the Console for more details.
C:/Users/Anvesh/Desktop/adt-bundle-windows-x86-20131030/sdk\platform-tools\adb.exe kill-server

stderr[

  • server not running *
    ]
    stdout[

If it worked before, try ending the proccess adb.exe in task manager, also unplug and put the usb phone cable back in

I’m pretty sure you have the SDK tools installed, because the error being produced is by the adb executable. adb is the Android Debug Bridge interface from your PC to the android device.

Go to your command line (open a command prompt window) and cd into your directory above (C:/Users/Anvesh/Desktop/adt-bundle-windows-x86-20131030/). Now type: sdkplatform-toolsadb.exe start-server
It should indicate that the server has started. Try again, and Unity should be able to kill and restart the server. It probably does a kill if the server isn’t responding, and ADB is terrible, utterly terrible sometimes. It often breaks Android Studio, which is made by Google!

Edit: By the way I think you are missing some slashes in your post. Did you mean sdk/platform-tools/adb.exe? That’s what I would have expected. If so, same concept, just cd into the platform-tools dir and run “adb start-server”.