Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to select with AVD you want use to emulate a Android Phone?

until now i have one AVD, android 1.5 google Apis 3 (because i use googlemaps on my app), to emulate my apps.

now i need to use a new AVD, android 1.5 but with SD card, and i created it with the AVD manager of eclipse.

ok, it's created.... but ¿how can i launch my app with that AVD?? i only can launch it with the old AVD, and i dont know how to do the change of AVD.

if i put Run Configurations, i only can see my old AVD, i can't see any other. Also if i put manual, i only can see my old AVD, not the new. And yes, it's created.

like image 638
NullPointerException Avatar asked Jan 30 '11 19:01

NullPointerException


People also ask

What is an AVD in Android emulator?

Android virtual devices Each instance of the Android Emulator uses an Android virtual device (AVD) to specify the Android version and hardware characteristics of the simulated device. To effectively test your app, you should create an AVD that models each device on which your app is designed to run. To create and manage AVDs, use the AVD Manager.

How do I create a virtual device (AVD)?

To create a new AVD: Open the AVD Manager by clicking Tools > AVD Manager. Click Create Virtual Device, at the bottom of the AVD Manager dialog. The Select Hardware page appears.

How to create a virtual device in Android Studio?

Create an AVD. Tip: If you want to launch your app into an emulator, instead run your app from Android Studio and then in the Select Deployment Target dialog that appears, click Create New Virtual Device . To create a new AVD: Open the AVD Manager by clicking Tools > AVD Manager . Click Create Virtual Device, ...

How do I launch an Android app into an emulator?

Tip: If you want to launch your app into an emulator, instead run your app from Android Studio and then in the Select Deployment Target dialog that appears, click Create New Virtual Device. To create a new AVD: Open the AVD Manager by clicking Tools > AVD Manager.


2 Answers

run menu -> run configurations -> second tab "target".

You can choose your new one, or set it to "Manual"

like image 93
Nanne Avatar answered Sep 30 '22 05:09

Nanne


The other option is to start the AVD with the Android SDK manager. Your IDE should pick it up automatically.

like image 42
Richard Avatar answered Sep 30 '22 06:09

Richard