Can't Run/debug App On Phone While Connected Through Usb While Using Android Studio (it Disconnects When Installing)
Solution 1:
TL;DR:
These two android tools' versions were outdated:
Update all android tools to the latest version, and make sure no old ones linger around, and you should be good to go. =)
After I tried to upload the APK directly into my phone from Android Studios' "Device File Explorer" tab and it failed with the same behaviour, I knew something was wrong with the adb-server
. So I proceeded to run the adb
directly from the console with the following commands:
$ adb start-server
$ adb push abcdefg.apk
The server started just fine, and resulted in the same behavior, but this showed me a new error/warning message that I was never shown in Android Studio:
adb server version (30) doesn't match thisclient (41); killing...
This was enough for me to find questions and blogpost like this one: How to resolve - “adb server version (32) doesn't match this client (36); killing…”
I guess this phone is very new compared to the old Android tools I have installed, so basically, all I had to do was to update these 2 tools (to the latest version) from the Android Studios's Android SDK configuration menu:
Android SDK Build-Tools
Android SDK Platform-Tools
Now, it is very important that you uninstall any old version of the tools that you may have lying around so that there is no chance that those get used (because it did happen to me during the process). You can check it by clicking the "Show package details" checkbox, and only check the latest version:
After this, kill adb
from the Task Manager (if it was running), and restart Android Studio. This should make sure you are not using any old version.
Post a Comment for "Can't Run/debug App On Phone While Connected Through Usb While Using Android Studio (it Disconnects When Installing)"