Start To Develop
Start To Develop

Reputation: 31

How to stop an Android emulator from Eclipse or Emulator button?

I just wonder how do I stop or exit Android emulator if I want to modify the source code and run again?

Do I just click on the emulator the "Power" button?

Upvotes: 0

Views: 148

Answers (1)

Stephan Branczyk
Stephan Branczyk

Reputation: 9375

Restarting the emulator is the equivalent of rebooting a phone everytime you test something.

It takes a lot of time and it's completely unnecessary (unless you're testing something that happens during reboot). Just re-run the code, Eclipse and adb will do the rest. Keep the window of the emulator open all the time, it will just re-install the apk onto it.

Upvotes: 2

Related Questions