Reputation: 138
After updating my android studio, I am not capable of anymore running applications on my mobile device because of that error.I need this help.
Upvotes: 7
Views: 10317
Reputation: 268
Here's how I solved:
I went toC:\Users\\AppData\Local\Android\Sdk and deleted "platform-tools". Afterwards I installed a new "platform-tools": platform-tools_r27.0.1-windows" (I downloaded it here but you may find in another place http://mirrors.zzu.edu.cn/android/repository/platform-tools_r27.0.1-windows.zip)
That means that the new sdks might not be working for me because I am using "compileSdkVersion 27" in gradle
Upvotes: 1
Reputation: 959
Your adb connection has hanged out. Open a console terminal and write adb kill-server
and adb start-server
.
Upvotes: 7