Reputation: 321
I've installed Android Studio 3.0, and have compiled and run applications successfully.
Device File explorer pane has the above error message in red, and nothing else.
Upvotes: 16
Views: 22850
Reputation: 771
Solution of Android Debug Bridge not found.
Simple following 4 Steps :
Open File -> Project Structure -> Project
• see if SDK not Selected..
Select any latest SDK OR Select Supported version for your system.
Then Open File -> Invalid Caches OR Restart Select.
You can See ADB Error Goes and Emulators Function on the Screen.
Upvotes: 9
Reputation: 271
Each Android Studio project requires information as to what SDK is to be used, and where it is located. The overall configuration defined in the SDK Manager under the tools menu is not enough, and it is used seemly to download and install the necessary SDK, so
+
to add one. Give it a name of Android SDK,c:\users\yourusername\appdata\local\android\sdk
(or the actual location as defined under SDK Manager).Your project is configured. Now open task manager and kill any existing adb.exe
processes. Android Studio is now ready to work with ADB.
Test by opening the Device File Explorer (this is a vertical tab on the very right bottom edge of AS), or test by selecting the Attach debugger to Android Process button, and you should see your Android Device.
If ADB doesn't communicate with your Android device, check to see if you have installed the Android USB driver. Also, the phone needs to be in developer mode for ADB to work with it.
Last point, I have had more success with AS/ADB when I launch AS with Administrator privileges. I hope this information is helpful to someone.
Upvotes: 27
Reputation: 392
You might not have installed the ADB drivers. It must be causing the IDE error to occur. Try to install the ADB (Google USB Drivers from the Android SDK Manager provided in Android Studio).
Upvotes: 2