0

I am using Android Studio and Android Virtual Device in order to test my app.

What I need is to use multiple emulator instances because I need to test devices with different phone numbers. What I need is to install the app on both opened emulator instances.

How can I do that? I search and tried some solutions, but I could not make it work. Any help would be appreciated.

1 Answer 1

1

Firstly, get your emulator names by doing:

adb devices

Then install your app to the device/emulator you want with

adb -s <device/emulator ID> install <app-location>/<app-name> 

-s means the source, which you will pick.

Hope this helps!

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.