Skip to content Skip to sidebar Skip to footer

Installing The Same App On Two Emulators

When I launch the android emulator through eclipse for the first time, its menu shows all the test apps that I have created. But when the launch a second instance of the same emula

Solution 1:

It happens because you can't run two emulators simultaneously. In fact you can but second emulator will not use emulator image files - second emulator will not use previously saved data and will not save any changes. Two emulators can't use one emulator image file simultaneously. You can read about emulator image files here.

Solutions: You can install your application on second emulator after launching through Eclipse or adb. Or you can create another "emulator" (AVD file). How to do it.

Solution 2:

In eclipse you can run the app in the desired emulator. Just click the run button and choose the emulator you want to have it to run in. The apps are in the other emulator because you used that emulator apperently all the time. When you wipe user data at launch of the emulator all the apps are gone.

So just run it in the other emulator and it will be available from the menu.

Post a Comment for "Installing The Same App On Two Emulators"