encrypted name
encrypted name

Reputation: 269

Android app is not launching in Emulator

When I am trying to launch an app in the emulator through Eclipse, the app is not launching and I am not getting any error also.

WHen I check in the target section of project properties, I can't see any AVD in the list even though I created a new AVD and it is running.

Upvotes: 0

Views: 66

Answers (1)

IntelliJ Amiya
IntelliJ Amiya

Reputation: 75778

Your android emulator might fails to connect eclipse DDMS tool and ask for adb to start manually. In that case you can start or stop the adb using the command prompt.So, I recommend running in a single command line:

sudo adb kill-server && sudo adb start-server

If not works please switch To Android Studio .Eclipse is dead .

Upvotes: 1

Related Questions