Sana
Sana

Reputation: 13

Android device not found (dont know why)

I formatted my laptop and installed eclipse again an other stuff. When I run the application, I get this message:

Installation error: Unknown failure Please check logcat output for more details. Failed to install ****.apk on device 'emulator-5554': device not found com.android.ddmlib.InstallException: device not found Launch canceled!

Does anyone know why?

Upvotes: 1

Views: 163

Answers (1)

Jorge E. Hernández
Jorge E. Hernández

Reputation: 2938

Try with this from the command line:

adb kill-server
adb start-server

Also, you should migrate to Android Studio, there is a better support and the Eclipse ADT plugin is no longer supported by Google.

Upvotes: 1

Related Questions