Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adb.exe has stopped working with Android Studio 4.3.1 and Android 9.+

With the latest clean installation of Android Studio with all the recommended settings I have this continuous error when I try to start an emulated device. The device starts up correctly and works properly but the "adb.exe has stopped working" popups continue to appear if they are closed, furthermore it is not possible to link the device with Android Studio because it is not recognized. Even if I download a previous image of Android (Android 9.0) I have the same problem.

The only plugins installed are Dart and Flutter. The question could be repeated but I did not find solutions for this problem, or rather, the solutions found did not allow me to close this problem.

Before this update everything was working properly. In this case we speak of a clean installation.

When I try to start the "main.dart" application to install it on the device the only error that appears is "Error retrieving device properties for ro.product.cpu.abi:"

Android Studio 3.4.1 Build #AI-183.6156.11.34.5522156, built on May 1, 2019 JRE: 1.8.0_152-release-1343-b01 amd64 JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o Windows 10 10.0

Android Debug Bridge version 1.0.41 Version 29.0.0-5611747

like image 953
bl4ckr0se Avatar asked Jun 08 '19 14:06

bl4ckr0se


People also ask

How do I fix an adb connection error?

In tools menu,Android-> untick enable adb Integration and Then OPEN widows task manager n manually end process adb.exe This also solved my issue as der were multiple adb.exe running. Show activity on this post. Restart the computer. Now, disconnect the device, connect it, Make sure USB debugging Option is enabled.

How do I fix Android SDK file not found adb?

Reinstalling the platform tools might fix this problem. Open Android Studio, click SDK Manager in the toolbar or click Tools > SDK Manager, click SDK Tools, then uncheck Android-SDK Platform-Tools (as shown above). After this, open C:\Users\Username\AppData\Local\Android\Sdk and delete the platform-tools folder.

How do you fix Cannot reach adb server attempting to reconnect?

This could be some configuration problem with you android studio try to delete your . android file in your users folder and restart android studio(proceed with caution). first try with android emulator, make sure to keep your android sdk up to date. give some to android studio in first initialization.


1 Answers

There is a temporary fix for now (if you're using Windows)!

1st Close Android Studio

2nd Open CMD and write: taskkill /f /im adb.exe

3rd Download this file: http://dl-ssl.google.com/android/repository/platform-tools_r28.0.2-windows.zip

4th Go to

C:\Users[your-username]\AppData\Local\Android\Sdk

and replace the "platform-tools" folder with the new one that you just downloaded.

ps: (a) don't forget to keep the backup (b) the AppData is a hidden folder

like image 129
onosecond Avatar answered Nov 15 '22 09:11

onosecond