Run AVD Emulator without Android Studio
up vote
113
down vote
favorite
is there a way to run the emulator without starting the Android Studio first. Perhaps from the command line. I know that this feature was available in older versions and has vanished since then. But perhaps someone found out how to do it anyways?
avd android-avd
add a comment |
up vote
113
down vote
favorite
is there a way to run the emulator without starting the Android Studio first. Perhaps from the command line. I know that this feature was available in older versions and has vanished since then. But perhaps someone found out how to do it anyways?
avd android-avd
2
This is my main gripe about android development, the mainstream AOSP support for cli based DIY development with your own text editor is almost non existent... I'm comparing to Vue/React development, which is a world ahead.
– Ray Foss
Jan 24 at 20:10
add a comment |
up vote
113
down vote
favorite
up vote
113
down vote
favorite
is there a way to run the emulator without starting the Android Studio first. Perhaps from the command line. I know that this feature was available in older versions and has vanished since then. But perhaps someone found out how to do it anyways?
avd android-avd
is there a way to run the emulator without starting the Android Studio first. Perhaps from the command line. I know that this feature was available in older versions and has vanished since then. But perhaps someone found out how to do it anyways?
avd android-avd
avd android-avd
edited Oct 26 '17 at 12:01
hippietrail
7,4711070107
7,4711070107
asked Mar 10 '17 at 12:57
user668338
7703717
7703717
2
This is my main gripe about android development, the mainstream AOSP support for cli based DIY development with your own text editor is almost non existent... I'm comparing to Vue/React development, which is a world ahead.
– Ray Foss
Jan 24 at 20:10
add a comment |
2
This is my main gripe about android development, the mainstream AOSP support for cli based DIY development with your own text editor is almost non existent... I'm comparing to Vue/React development, which is a world ahead.
– Ray Foss
Jan 24 at 20:10
2
2
This is my main gripe about android development, the mainstream AOSP support for cli based DIY development with your own text editor is almost non existent... I'm comparing to Vue/React development, which is a world ahead.
– Ray Foss
Jan 24 at 20:10
This is my main gripe about android development, the mainstream AOSP support for cli based DIY development with your own text editor is almost non existent... I'm comparing to Vue/React development, which is a world ahead.
– Ray Foss
Jan 24 at 20:10
add a comment |
21 Answers
21
active
oldest
votes
up vote
143
down vote
The way to run emulator from console (I assume that you installed it before, using Android Studio) is:
run cd ~/Android/Sdk/tools/bin && ./avdmanager list avd
You will get the list od your virtual installed devices. In my case it was:
Available Android Virtual Devices:
Name: Galaxy_Nexus_API_17
Device: Galaxy Nexus (Google)
Path: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd
Target: Google APIs (Google Inc.)
Based on: Android 4.2 (Jelly Bean) Tag/ABI: google_apis/x86
Skin: galaxy_nexus
Sdcard: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd/sdcard.img
---------
Name: Nexus_5X_API_23
Device: Nexus 5X (Google)
Path: /home/piotr/.android/avd/Nexus_5X_API_23.avd
Target: Google APIs (Google Inc.)
Based on: Android 6.0 (Marshmallow) Tag/ABI: google_apis/x86
Skin: nexus_5x
Sdcard: /home/piotr/.android/avd/Nexus_5X_API_23.avd/sdcard.img
Copy name of device you want to run and then
cd ~/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
in my case:
cd ~/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_23
28
Just a heads-up: For me the sdk was located in/Users/<username>/Library/Android/sdk
– flaky
May 5 '17 at 6:51
2
The last command gives me an errorbash: ./emulator: No such file or directory
. Any ideas how to solve this ?
– Dhyey
Jul 23 '17 at 7:37
1
Depending on how installation of the SDK occurred, you may have the environment variable$ANDROID_HOME
set to the SDK location.cd $ANDROID_HOME/tools/bin && ./avdmanager list avd
andcd $ANDROID_HOME/tools && ./emulator -avd <NAME_OF_YOUR_DEVICE>
– Joshua King
Sep 22 '17 at 14:58
1
@PiotrGalas thank you so much. Finally after a long research your answer was very much helpful
– Pitchiah Natarajan
Feb 27 at 8:57
1
Slightly Shorter command:~/Library/Android/Sdk/tools/emulator -avd Nexus_5
... (no need forcd
and&& ./
) this way your current directory won't change
– Sodj
Aug 30 at 12:28
|
show 3 more comments
up vote
33
down vote
On MacOS
First list down the installed emulators
~/Library/Android/sdk/tools/emulator -list-avds
then run an emulator
~/Library/Android/sdk/tools/emulator -avd Nexus_5X_API_27
2
Nice! Shortcut to run the first in the list:~/Library/Android/sdk/tools/emulator -avd $(~/Library/Android/sdk/tools/emulator -list-avds | head -n 1)
– James Broad
Mar 22 at 17:42
This was very helpfull thanx @zeeawan .!
– Tharusha Shehan
Nov 8 at 7:10
add a comment |
up vote
23
down vote
Try this
1. Complete Video tutorials (For all windows versions)
OR
2. Text tutorials
- Open the command prompt and change the directory where your sdk is placed
D:SoftwaresAndroidsdktoolsbin>
- now add your avdmanager in this,now your full code is
D:SoftwaresAndroidsdktoolsbin>avdmanager list avd
- it will show you a list of emulator device that you have already created after few seconds
- now type
cd..
and run your emulator with this cmd, Here my emulator name is Tablet_API_25 so I have typed this name after the -avd.
D:SoftwaresAndroidsdktools>emulator -avd Tablet_API_25
7
on my Windows 10 machine, "avdmanager list avd" command did not work; i used "emulator -list-avds" in the tools/ directory. In case this helps someone else :)
– dean.huczok
Oct 4 '17 at 23:42
2
why i received error, [1020]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ..emulatorlib64qtlib Could not launch 'C:Usersafaid.androidavd..emulatorqemuwindows-x86_64qemu-system-x86_64.exe': No such file or directory
– Han Whiteking
Nov 16 '17 at 1:22
@HanWhiteking Have you tried to check the path you are specifying is correct or not ?
– Sunil
Nov 16 '17 at 4:34
add a comment |
up vote
20
down vote
In the ANDROID_HOME folder you will have tools folder
In Mac/Linux
emulator -avd <avdName>
In Windows
emulator.exe -avd <avdName>
If you are using API 24
You can get the names of the emulator from the list
android list avds
If you are using API 25
then you will get it with avdmanager in toolsbin
avdmanager list avds
add a comment |
up vote
15
down vote
You can make a batch file, that will open your emulator directly without opening Android Studio. If you are using Windows:
Open Notepad
New file
Copy the next lines into your file:
C:/
cd C:Users%username%AppDataLocalAndroidsdktools
emulator @[YOUR_EMULATOR_DEVICE_NAME]Notes:
Replace
[YOUR_EMULATOR_DEVICE_NAME]
with the device name you created in emulatorTo get the device name go to:
C:Users%username%AppDataLocalAndroidsdktools
Run
cmd
and type:emulator -list-avds
Copy the device name and paste it in the batch file
Save the file as
emulator.bat
and closeNow double click on
emulator.bat
and you got the emulator running!
Windows also has %LOCALAPPDATA% as a variable, you could shorten that to:%LOCALAPPDATA%Androidsdkemulatoremulator @Pixel_2_API_27
(part after the @ is a device name, obtained from the mentioned-list-avds
– amenthes
Apr 9 at 19:01
Just typingC:
is enough to change the drive. When I include the forward slash, ieC:/
, I get an error in both Powershell and Command Prompt.
– Rokit
May 19 at 20:37
add a comment |
up vote
11
down vote
to list the emulators you have
~/Library/Android/sdk/tools/emulator -list-avds
for example, I have this Nexus_5X_API_24
so the command to run that emulator is
cd ~/Library/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_24
Yeah, the emulator binary has the-list-avds
option. This is the easier way
– Subin
Jul 30 at 11:22
add a comment |
up vote
7
down vote
Here’s what you need to do:
1.Download and extract the SDK.
2.Open a terminal and navigate to the “tools” directory.
3.Launch the “android” tool (./android if you are currently in the tools directory).
4.Tick off the “SDK Platform” for each version of Android that you’d like to use in your emulator.
5.Click the “Install N Packages” button.
6.Click each package and tick off “Accept License” (legally, I’m probably required to tell you that this step may take several hours as you read each license ;).
7.Done with those licenses? Great. Click “Install”. Wait for the SDK manager to finish installing your packages, then you can close it.
8.Back in your terminal, still in the tools directory, enter ./android avd which will launch the Android Virtual Device Manager.
9.Click “New” and fill out the form to build the device you’d like to emulate. In the “Target” dropdown, you’ll see the SDK Platforms that you installed earlier. If the version you need is missing, you need to go back and install it. Click OK when you’re done.
10.Click on the device that you just created and click the “Start” button, tweak any options that you need on the Launch Options window, and click “Launch”.
Check this question's answer also.
5
Theandroid
tool is now deprecated
– illright
Aug 22 '17 at 11:06
add a comment |
up vote
6
down vote
Assuming you have installed Android studio properly,Open a command prompt and type
emulator -list-avds
which will display all the devices and then type emulator @avd_name
where avd_name is the the name of your emulator installed.
add a comment |
up vote
6
down vote
Firstly change the directory where your avd devices are listed; for me it is here:
cd ~/Android/Sdk/tools
Then run the emulator by following command:
./emulator -avd Your_avd_device_name
For me it is:
./emulator -avd Nexus_5X_API_27
That's all.
1
Awesome.. so simple. Thanks
– Chris J Kikoti
Apr 8 at 20:17
add a comment |
up vote
5
down vote
I already have the Studio installed. But without starting (not installing) the Android Studio you can directly start the emulator with
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktoolsemulator.exe -netdelay none -netspeed full -avd YOUR_AVD_NAME
add a comment |
up vote
4
down vote
The path for emulator is
/Users/<Username>/AppData/Local/Android/sdk/tools
add a comment |
up vote
4
down vote
Assuming you've got Android Studio installed, and SDK in your PATH, it's:
emulator -avd avd_name
To get a list of AVD names, run:
emulator -list-avds
Source: https://developer.android.com/studio/run/emulator-commandline.html
add a comment |
up vote
3
down vote
For Linux/Ubuntu
Create a new File from Terminal as
gedit emulator.sh (Use any Name for file here i have used "emulator")
now write following lines in this file
cd /home/userName/Android/Sdk/tools/
./emulator @your created Android device Name
(here after @ write the name of your AVD e.g
./emulator @Nexus_5X_API_27
)
Now save the file and run your emulator using following commands
./emulator.sh
In case of Permission denied use following command before above command
chmod +x emulator.sh
All set Go..
amazing and helped save my time so much
– Asfand Shabbir
Mar 28 at 19:06
I tried following the above listed commands, but still not working.
– NarendraJi
May 10 at 14:10
add a comment |
up vote
2
down vote
Got it working for Windows 10:
C:UsersUserNameAppDataLocalAndroidSdktools>emulator -list-avds
Nexus_5X_API_28
C:UsersUserNameAppDataLocalAndroidSdkemulator>emulator -avd Nexus_5X_API_28
add a comment |
up vote
2
down vote
This is the commands on Mac
cd ~/Library/Android/Sdk/tools/bin && ./avdmanager list avd
then
cd ~/Library/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
add a comment |
up vote
1
down vote
if you installed Git on your system. then you can run .sh bash code. I create the bash code for search from your created ADV Devices and list them. then you can select the number of adv device for run emulator without running Android studio.
link:
adv-emulator.sh
note [windows os]: please first add %appdata%..LocalAndroidSdkemulator
to your system Environment path, otherwise the bash-code not work.
add a comment |
up vote
1
down vote
On windows
......Androidsdktoolsbinavdmanager list avds
......Androidsdktoolsemulator.exe -avd Nexus_5X_API_27
2
Brings up PANIC: Missing emulator engine program for 'x86' CPU. Although I can start it in Android Studio?
– user668338
Jul 11 at 17:42
You can go to $ANDROID_HOME/emulator -avd DEVICE_NAME stackoverflow.com/questions/26483370/…
– brownmagik352
Sep 8 at 0:51
add a comment |
up vote
1
down vote
I am working with a React Native project and I also faced this problem
I solved it by making a .bat file in my desktop that I can open fast
The content of the .bat is
C:UsershariaAppDataLocalAndroidsdkemulatoremulator -avd Pixel_2_XL_API_27
Where haria is my Windows username and
Pixel_2_XL_API_27 is my emulator name
If you want to see your emulator name, open CMD (or PowerShell) and type (In Windows)
cd C:UsershariaAppDataLocalAndroidsdkemulator
Then to see the emulator(s) name
./emulator -list-avds
add a comment |
up vote
0
down vote
For Windows
In case anyone looking for shortcut / batch script - Gist - Download batch file.
@echo off
IF [%1]== (GOTO ExitWithPrompt)
set i=1
FOR /F "delims=" %%i IN ('emulator -list-avds') DO (
set /A i=i+1
set em=%%i
if %i% == %1 (
echo Starting %em%
emulator -avd %em%
EXIT /B 0
)
)
GOTO :Exit
:ExitWithPrompt
emulator -list-avds
echo Please enter the emulator number to start
:Exit
EXIT /B 0
Usage
D:>start-emulator
Nexus_5_API_26
Please enter the emulator number to start
D:>start-emulator 1
Starting Nexus_5_API_26
HAX is working and emulator runs in fast virt mode.
This lists me exactly 0 AVDs available. How to install/download/seetup AVD from commandline?
– Tino
Oct 22 at 10:05
@Tino I will share seperate gist for that by tomorrow EOD.
– Prachil Tambe
Oct 22 at 10:07
add a comment |
up vote
0
down vote
(Only for Windows)
Why to torture yourself? Make a Simple BAT file ! :
- Open Notepad
- Create the command as shown below
- Save as *.bat
- (Optional) Create a shortcut to that *.bat, rename shortcut and change icon
Here is the command:
cd /d yourSdkPathemulator && emulator -avd yourAVDName
Example:
cd /d D:Android_SDKemulator && emulator -avd Nexus_5_API_28
add a comment |
up vote
0
down vote
If you are on windows, what about a shortcut ? It is very easy to place whatever you want ant the icon is descriptive and nice.
- First, navigate to your android sdk, probably at
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktools
- Then right click on emulator.exe and then click create shortcut.
- Your new and shiny shortcut gets created, probably with a predefined name.
- Right click on the shortcut, and on the target field (my computer is on spanish) add an extra parameter with the name of your device with an
@
in front (take a look at the picture below )
now you can do whatever yhou want with that shortcut, put on the desktop, bind it to the start-menu or whatever
add a comment |
21 Answers
21
active
oldest
votes
21 Answers
21
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
143
down vote
The way to run emulator from console (I assume that you installed it before, using Android Studio) is:
run cd ~/Android/Sdk/tools/bin && ./avdmanager list avd
You will get the list od your virtual installed devices. In my case it was:
Available Android Virtual Devices:
Name: Galaxy_Nexus_API_17
Device: Galaxy Nexus (Google)
Path: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd
Target: Google APIs (Google Inc.)
Based on: Android 4.2 (Jelly Bean) Tag/ABI: google_apis/x86
Skin: galaxy_nexus
Sdcard: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd/sdcard.img
---------
Name: Nexus_5X_API_23
Device: Nexus 5X (Google)
Path: /home/piotr/.android/avd/Nexus_5X_API_23.avd
Target: Google APIs (Google Inc.)
Based on: Android 6.0 (Marshmallow) Tag/ABI: google_apis/x86
Skin: nexus_5x
Sdcard: /home/piotr/.android/avd/Nexus_5X_API_23.avd/sdcard.img
Copy name of device you want to run and then
cd ~/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
in my case:
cd ~/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_23
28
Just a heads-up: For me the sdk was located in/Users/<username>/Library/Android/sdk
– flaky
May 5 '17 at 6:51
2
The last command gives me an errorbash: ./emulator: No such file or directory
. Any ideas how to solve this ?
– Dhyey
Jul 23 '17 at 7:37
1
Depending on how installation of the SDK occurred, you may have the environment variable$ANDROID_HOME
set to the SDK location.cd $ANDROID_HOME/tools/bin && ./avdmanager list avd
andcd $ANDROID_HOME/tools && ./emulator -avd <NAME_OF_YOUR_DEVICE>
– Joshua King
Sep 22 '17 at 14:58
1
@PiotrGalas thank you so much. Finally after a long research your answer was very much helpful
– Pitchiah Natarajan
Feb 27 at 8:57
1
Slightly Shorter command:~/Library/Android/Sdk/tools/emulator -avd Nexus_5
... (no need forcd
and&& ./
) this way your current directory won't change
– Sodj
Aug 30 at 12:28
|
show 3 more comments
up vote
143
down vote
The way to run emulator from console (I assume that you installed it before, using Android Studio) is:
run cd ~/Android/Sdk/tools/bin && ./avdmanager list avd
You will get the list od your virtual installed devices. In my case it was:
Available Android Virtual Devices:
Name: Galaxy_Nexus_API_17
Device: Galaxy Nexus (Google)
Path: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd
Target: Google APIs (Google Inc.)
Based on: Android 4.2 (Jelly Bean) Tag/ABI: google_apis/x86
Skin: galaxy_nexus
Sdcard: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd/sdcard.img
---------
Name: Nexus_5X_API_23
Device: Nexus 5X (Google)
Path: /home/piotr/.android/avd/Nexus_5X_API_23.avd
Target: Google APIs (Google Inc.)
Based on: Android 6.0 (Marshmallow) Tag/ABI: google_apis/x86
Skin: nexus_5x
Sdcard: /home/piotr/.android/avd/Nexus_5X_API_23.avd/sdcard.img
Copy name of device you want to run and then
cd ~/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
in my case:
cd ~/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_23
28
Just a heads-up: For me the sdk was located in/Users/<username>/Library/Android/sdk
– flaky
May 5 '17 at 6:51
2
The last command gives me an errorbash: ./emulator: No such file or directory
. Any ideas how to solve this ?
– Dhyey
Jul 23 '17 at 7:37
1
Depending on how installation of the SDK occurred, you may have the environment variable$ANDROID_HOME
set to the SDK location.cd $ANDROID_HOME/tools/bin && ./avdmanager list avd
andcd $ANDROID_HOME/tools && ./emulator -avd <NAME_OF_YOUR_DEVICE>
– Joshua King
Sep 22 '17 at 14:58
1
@PiotrGalas thank you so much. Finally after a long research your answer was very much helpful
– Pitchiah Natarajan
Feb 27 at 8:57
1
Slightly Shorter command:~/Library/Android/Sdk/tools/emulator -avd Nexus_5
... (no need forcd
and&& ./
) this way your current directory won't change
– Sodj
Aug 30 at 12:28
|
show 3 more comments
up vote
143
down vote
up vote
143
down vote
The way to run emulator from console (I assume that you installed it before, using Android Studio) is:
run cd ~/Android/Sdk/tools/bin && ./avdmanager list avd
You will get the list od your virtual installed devices. In my case it was:
Available Android Virtual Devices:
Name: Galaxy_Nexus_API_17
Device: Galaxy Nexus (Google)
Path: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd
Target: Google APIs (Google Inc.)
Based on: Android 4.2 (Jelly Bean) Tag/ABI: google_apis/x86
Skin: galaxy_nexus
Sdcard: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd/sdcard.img
---------
Name: Nexus_5X_API_23
Device: Nexus 5X (Google)
Path: /home/piotr/.android/avd/Nexus_5X_API_23.avd
Target: Google APIs (Google Inc.)
Based on: Android 6.0 (Marshmallow) Tag/ABI: google_apis/x86
Skin: nexus_5x
Sdcard: /home/piotr/.android/avd/Nexus_5X_API_23.avd/sdcard.img
Copy name of device you want to run and then
cd ~/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
in my case:
cd ~/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_23
The way to run emulator from console (I assume that you installed it before, using Android Studio) is:
run cd ~/Android/Sdk/tools/bin && ./avdmanager list avd
You will get the list od your virtual installed devices. In my case it was:
Available Android Virtual Devices:
Name: Galaxy_Nexus_API_17
Device: Galaxy Nexus (Google)
Path: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd
Target: Google APIs (Google Inc.)
Based on: Android 4.2 (Jelly Bean) Tag/ABI: google_apis/x86
Skin: galaxy_nexus
Sdcard: /home/piotr/.android/avd/Galaxy_Nexus_API_17.avd/sdcard.img
---------
Name: Nexus_5X_API_23
Device: Nexus 5X (Google)
Path: /home/piotr/.android/avd/Nexus_5X_API_23.avd
Target: Google APIs (Google Inc.)
Based on: Android 6.0 (Marshmallow) Tag/ABI: google_apis/x86
Skin: nexus_5x
Sdcard: /home/piotr/.android/avd/Nexus_5X_API_23.avd/sdcard.img
Copy name of device you want to run and then
cd ~/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
in my case:
cd ~/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_23
edited Jul 23 '17 at 17:46
answered Mar 16 '17 at 21:31
Piotr Galas
2,16011223
2,16011223
28
Just a heads-up: For me the sdk was located in/Users/<username>/Library/Android/sdk
– flaky
May 5 '17 at 6:51
2
The last command gives me an errorbash: ./emulator: No such file or directory
. Any ideas how to solve this ?
– Dhyey
Jul 23 '17 at 7:37
1
Depending on how installation of the SDK occurred, you may have the environment variable$ANDROID_HOME
set to the SDK location.cd $ANDROID_HOME/tools/bin && ./avdmanager list avd
andcd $ANDROID_HOME/tools && ./emulator -avd <NAME_OF_YOUR_DEVICE>
– Joshua King
Sep 22 '17 at 14:58
1
@PiotrGalas thank you so much. Finally after a long research your answer was very much helpful
– Pitchiah Natarajan
Feb 27 at 8:57
1
Slightly Shorter command:~/Library/Android/Sdk/tools/emulator -avd Nexus_5
... (no need forcd
and&& ./
) this way your current directory won't change
– Sodj
Aug 30 at 12:28
|
show 3 more comments
28
Just a heads-up: For me the sdk was located in/Users/<username>/Library/Android/sdk
– flaky
May 5 '17 at 6:51
2
The last command gives me an errorbash: ./emulator: No such file or directory
. Any ideas how to solve this ?
– Dhyey
Jul 23 '17 at 7:37
1
Depending on how installation of the SDK occurred, you may have the environment variable$ANDROID_HOME
set to the SDK location.cd $ANDROID_HOME/tools/bin && ./avdmanager list avd
andcd $ANDROID_HOME/tools && ./emulator -avd <NAME_OF_YOUR_DEVICE>
– Joshua King
Sep 22 '17 at 14:58
1
@PiotrGalas thank you so much. Finally after a long research your answer was very much helpful
– Pitchiah Natarajan
Feb 27 at 8:57
1
Slightly Shorter command:~/Library/Android/Sdk/tools/emulator -avd Nexus_5
... (no need forcd
and&& ./
) this way your current directory won't change
– Sodj
Aug 30 at 12:28
28
28
Just a heads-up: For me the sdk was located in
/Users/<username>/Library/Android/sdk
– flaky
May 5 '17 at 6:51
Just a heads-up: For me the sdk was located in
/Users/<username>/Library/Android/sdk
– flaky
May 5 '17 at 6:51
2
2
The last command gives me an error
bash: ./emulator: No such file or directory
. Any ideas how to solve this ?– Dhyey
Jul 23 '17 at 7:37
The last command gives me an error
bash: ./emulator: No such file or directory
. Any ideas how to solve this ?– Dhyey
Jul 23 '17 at 7:37
1
1
Depending on how installation of the SDK occurred, you may have the environment variable
$ANDROID_HOME
set to the SDK location. cd $ANDROID_HOME/tools/bin && ./avdmanager list avd
and cd $ANDROID_HOME/tools && ./emulator -avd <NAME_OF_YOUR_DEVICE>
– Joshua King
Sep 22 '17 at 14:58
Depending on how installation of the SDK occurred, you may have the environment variable
$ANDROID_HOME
set to the SDK location. cd $ANDROID_HOME/tools/bin && ./avdmanager list avd
and cd $ANDROID_HOME/tools && ./emulator -avd <NAME_OF_YOUR_DEVICE>
– Joshua King
Sep 22 '17 at 14:58
1
1
@PiotrGalas thank you so much. Finally after a long research your answer was very much helpful
– Pitchiah Natarajan
Feb 27 at 8:57
@PiotrGalas thank you so much. Finally after a long research your answer was very much helpful
– Pitchiah Natarajan
Feb 27 at 8:57
1
1
Slightly Shorter command:
~/Library/Android/Sdk/tools/emulator -avd Nexus_5
... (no need for cd
and && ./
) this way your current directory won't change– Sodj
Aug 30 at 12:28
Slightly Shorter command:
~/Library/Android/Sdk/tools/emulator -avd Nexus_5
... (no need for cd
and && ./
) this way your current directory won't change– Sodj
Aug 30 at 12:28
|
show 3 more comments
up vote
33
down vote
On MacOS
First list down the installed emulators
~/Library/Android/sdk/tools/emulator -list-avds
then run an emulator
~/Library/Android/sdk/tools/emulator -avd Nexus_5X_API_27
2
Nice! Shortcut to run the first in the list:~/Library/Android/sdk/tools/emulator -avd $(~/Library/Android/sdk/tools/emulator -list-avds | head -n 1)
– James Broad
Mar 22 at 17:42
This was very helpfull thanx @zeeawan .!
– Tharusha Shehan
Nov 8 at 7:10
add a comment |
up vote
33
down vote
On MacOS
First list down the installed emulators
~/Library/Android/sdk/tools/emulator -list-avds
then run an emulator
~/Library/Android/sdk/tools/emulator -avd Nexus_5X_API_27
2
Nice! Shortcut to run the first in the list:~/Library/Android/sdk/tools/emulator -avd $(~/Library/Android/sdk/tools/emulator -list-avds | head -n 1)
– James Broad
Mar 22 at 17:42
This was very helpfull thanx @zeeawan .!
– Tharusha Shehan
Nov 8 at 7:10
add a comment |
up vote
33
down vote
up vote
33
down vote
On MacOS
First list down the installed emulators
~/Library/Android/sdk/tools/emulator -list-avds
then run an emulator
~/Library/Android/sdk/tools/emulator -avd Nexus_5X_API_27
On MacOS
First list down the installed emulators
~/Library/Android/sdk/tools/emulator -list-avds
then run an emulator
~/Library/Android/sdk/tools/emulator -avd Nexus_5X_API_27
answered Feb 11 at 7:21
zeeawan
3,76813437
3,76813437
2
Nice! Shortcut to run the first in the list:~/Library/Android/sdk/tools/emulator -avd $(~/Library/Android/sdk/tools/emulator -list-avds | head -n 1)
– James Broad
Mar 22 at 17:42
This was very helpfull thanx @zeeawan .!
– Tharusha Shehan
Nov 8 at 7:10
add a comment |
2
Nice! Shortcut to run the first in the list:~/Library/Android/sdk/tools/emulator -avd $(~/Library/Android/sdk/tools/emulator -list-avds | head -n 1)
– James Broad
Mar 22 at 17:42
This was very helpfull thanx @zeeawan .!
– Tharusha Shehan
Nov 8 at 7:10
2
2
Nice! Shortcut to run the first in the list:
~/Library/Android/sdk/tools/emulator -avd $(~/Library/Android/sdk/tools/emulator -list-avds | head -n 1)
– James Broad
Mar 22 at 17:42
Nice! Shortcut to run the first in the list:
~/Library/Android/sdk/tools/emulator -avd $(~/Library/Android/sdk/tools/emulator -list-avds | head -n 1)
– James Broad
Mar 22 at 17:42
This was very helpfull thanx @zeeawan .!
– Tharusha Shehan
Nov 8 at 7:10
This was very helpfull thanx @zeeawan .!
– Tharusha Shehan
Nov 8 at 7:10
add a comment |
up vote
23
down vote
Try this
1. Complete Video tutorials (For all windows versions)
OR
2. Text tutorials
- Open the command prompt and change the directory where your sdk is placed
D:SoftwaresAndroidsdktoolsbin>
- now add your avdmanager in this,now your full code is
D:SoftwaresAndroidsdktoolsbin>avdmanager list avd
- it will show you a list of emulator device that you have already created after few seconds
- now type
cd..
and run your emulator with this cmd, Here my emulator name is Tablet_API_25 so I have typed this name after the -avd.
D:SoftwaresAndroidsdktools>emulator -avd Tablet_API_25
7
on my Windows 10 machine, "avdmanager list avd" command did not work; i used "emulator -list-avds" in the tools/ directory. In case this helps someone else :)
– dean.huczok
Oct 4 '17 at 23:42
2
why i received error, [1020]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ..emulatorlib64qtlib Could not launch 'C:Usersafaid.androidavd..emulatorqemuwindows-x86_64qemu-system-x86_64.exe': No such file or directory
– Han Whiteking
Nov 16 '17 at 1:22
@HanWhiteking Have you tried to check the path you are specifying is correct or not ?
– Sunil
Nov 16 '17 at 4:34
add a comment |
up vote
23
down vote
Try this
1. Complete Video tutorials (For all windows versions)
OR
2. Text tutorials
- Open the command prompt and change the directory where your sdk is placed
D:SoftwaresAndroidsdktoolsbin>
- now add your avdmanager in this,now your full code is
D:SoftwaresAndroidsdktoolsbin>avdmanager list avd
- it will show you a list of emulator device that you have already created after few seconds
- now type
cd..
and run your emulator with this cmd, Here my emulator name is Tablet_API_25 so I have typed this name after the -avd.
D:SoftwaresAndroidsdktools>emulator -avd Tablet_API_25
7
on my Windows 10 machine, "avdmanager list avd" command did not work; i used "emulator -list-avds" in the tools/ directory. In case this helps someone else :)
– dean.huczok
Oct 4 '17 at 23:42
2
why i received error, [1020]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ..emulatorlib64qtlib Could not launch 'C:Usersafaid.androidavd..emulatorqemuwindows-x86_64qemu-system-x86_64.exe': No such file or directory
– Han Whiteking
Nov 16 '17 at 1:22
@HanWhiteking Have you tried to check the path you are specifying is correct or not ?
– Sunil
Nov 16 '17 at 4:34
add a comment |
up vote
23
down vote
up vote
23
down vote
Try this
1. Complete Video tutorials (For all windows versions)
OR
2. Text tutorials
- Open the command prompt and change the directory where your sdk is placed
D:SoftwaresAndroidsdktoolsbin>
- now add your avdmanager in this,now your full code is
D:SoftwaresAndroidsdktoolsbin>avdmanager list avd
- it will show you a list of emulator device that you have already created after few seconds
- now type
cd..
and run your emulator with this cmd, Here my emulator name is Tablet_API_25 so I have typed this name after the -avd.
D:SoftwaresAndroidsdktools>emulator -avd Tablet_API_25
Try this
1. Complete Video tutorials (For all windows versions)
OR
2. Text tutorials
- Open the command prompt and change the directory where your sdk is placed
D:SoftwaresAndroidsdktoolsbin>
- now add your avdmanager in this,now your full code is
D:SoftwaresAndroidsdktoolsbin>avdmanager list avd
- it will show you a list of emulator device that you have already created after few seconds
- now type
cd..
and run your emulator with this cmd, Here my emulator name is Tablet_API_25 so I have typed this name after the -avd.
D:SoftwaresAndroidsdktools>emulator -avd Tablet_API_25
edited Sep 3 at 11:31
answered Sep 28 '17 at 12:17
Sunil
1,5071929
1,5071929
7
on my Windows 10 machine, "avdmanager list avd" command did not work; i used "emulator -list-avds" in the tools/ directory. In case this helps someone else :)
– dean.huczok
Oct 4 '17 at 23:42
2
why i received error, [1020]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ..emulatorlib64qtlib Could not launch 'C:Usersafaid.androidavd..emulatorqemuwindows-x86_64qemu-system-x86_64.exe': No such file or directory
– Han Whiteking
Nov 16 '17 at 1:22
@HanWhiteking Have you tried to check the path you are specifying is correct or not ?
– Sunil
Nov 16 '17 at 4:34
add a comment |
7
on my Windows 10 machine, "avdmanager list avd" command did not work; i used "emulator -list-avds" in the tools/ directory. In case this helps someone else :)
– dean.huczok
Oct 4 '17 at 23:42
2
why i received error, [1020]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ..emulatorlib64qtlib Could not launch 'C:Usersafaid.androidavd..emulatorqemuwindows-x86_64qemu-system-x86_64.exe': No such file or directory
– Han Whiteking
Nov 16 '17 at 1:22
@HanWhiteking Have you tried to check the path you are specifying is correct or not ?
– Sunil
Nov 16 '17 at 4:34
7
7
on my Windows 10 machine, "avdmanager list avd" command did not work; i used "emulator -list-avds" in the tools/ directory. In case this helps someone else :)
– dean.huczok
Oct 4 '17 at 23:42
on my Windows 10 machine, "avdmanager list avd" command did not work; i used "emulator -list-avds" in the tools/ directory. In case this helps someone else :)
– dean.huczok
Oct 4 '17 at 23:42
2
2
why i received error, [1020]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ..emulatorlib64qtlib Could not launch 'C:Usersafaid.androidavd..emulatorqemuwindows-x86_64qemu-system-x86_64.exe': No such file or directory
– Han Whiteking
Nov 16 '17 at 1:22
why i received error, [1020]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ..emulatorlib64qtlib Could not launch 'C:Usersafaid.androidavd..emulatorqemuwindows-x86_64qemu-system-x86_64.exe': No such file or directory
– Han Whiteking
Nov 16 '17 at 1:22
@HanWhiteking Have you tried to check the path you are specifying is correct or not ?
– Sunil
Nov 16 '17 at 4:34
@HanWhiteking Have you tried to check the path you are specifying is correct or not ?
– Sunil
Nov 16 '17 at 4:34
add a comment |
up vote
20
down vote
In the ANDROID_HOME folder you will have tools folder
In Mac/Linux
emulator -avd <avdName>
In Windows
emulator.exe -avd <avdName>
If you are using API 24
You can get the names of the emulator from the list
android list avds
If you are using API 25
then you will get it with avdmanager in toolsbin
avdmanager list avds
add a comment |
up vote
20
down vote
In the ANDROID_HOME folder you will have tools folder
In Mac/Linux
emulator -avd <avdName>
In Windows
emulator.exe -avd <avdName>
If you are using API 24
You can get the names of the emulator from the list
android list avds
If you are using API 25
then you will get it with avdmanager in toolsbin
avdmanager list avds
add a comment |
up vote
20
down vote
up vote
20
down vote
In the ANDROID_HOME folder you will have tools folder
In Mac/Linux
emulator -avd <avdName>
In Windows
emulator.exe -avd <avdName>
If you are using API 24
You can get the names of the emulator from the list
android list avds
If you are using API 25
then you will get it with avdmanager in toolsbin
avdmanager list avds
In the ANDROID_HOME folder you will have tools folder
In Mac/Linux
emulator -avd <avdName>
In Windows
emulator.exe -avd <avdName>
If you are using API 24
You can get the names of the emulator from the list
android list avds
If you are using API 25
then you will get it with avdmanager in toolsbin
avdmanager list avds
edited Mar 29 '17 at 11:19
answered Mar 29 '17 at 11:14
Soumya Swaroop
23613
23613
add a comment |
add a comment |
up vote
15
down vote
You can make a batch file, that will open your emulator directly without opening Android Studio. If you are using Windows:
Open Notepad
New file
Copy the next lines into your file:
C:/
cd C:Users%username%AppDataLocalAndroidsdktools
emulator @[YOUR_EMULATOR_DEVICE_NAME]Notes:
Replace
[YOUR_EMULATOR_DEVICE_NAME]
with the device name you created in emulatorTo get the device name go to:
C:Users%username%AppDataLocalAndroidsdktools
Run
cmd
and type:emulator -list-avds
Copy the device name and paste it in the batch file
Save the file as
emulator.bat
and closeNow double click on
emulator.bat
and you got the emulator running!
Windows also has %LOCALAPPDATA% as a variable, you could shorten that to:%LOCALAPPDATA%Androidsdkemulatoremulator @Pixel_2_API_27
(part after the @ is a device name, obtained from the mentioned-list-avds
– amenthes
Apr 9 at 19:01
Just typingC:
is enough to change the drive. When I include the forward slash, ieC:/
, I get an error in both Powershell and Command Prompt.
– Rokit
May 19 at 20:37
add a comment |
up vote
15
down vote
You can make a batch file, that will open your emulator directly without opening Android Studio. If you are using Windows:
Open Notepad
New file
Copy the next lines into your file:
C:/
cd C:Users%username%AppDataLocalAndroidsdktools
emulator @[YOUR_EMULATOR_DEVICE_NAME]Notes:
Replace
[YOUR_EMULATOR_DEVICE_NAME]
with the device name you created in emulatorTo get the device name go to:
C:Users%username%AppDataLocalAndroidsdktools
Run
cmd
and type:emulator -list-avds
Copy the device name and paste it in the batch file
Save the file as
emulator.bat
and closeNow double click on
emulator.bat
and you got the emulator running!
Windows also has %LOCALAPPDATA% as a variable, you could shorten that to:%LOCALAPPDATA%Androidsdkemulatoremulator @Pixel_2_API_27
(part after the @ is a device name, obtained from the mentioned-list-avds
– amenthes
Apr 9 at 19:01
Just typingC:
is enough to change the drive. When I include the forward slash, ieC:/
, I get an error in both Powershell and Command Prompt.
– Rokit
May 19 at 20:37
add a comment |
up vote
15
down vote
up vote
15
down vote
You can make a batch file, that will open your emulator directly without opening Android Studio. If you are using Windows:
Open Notepad
New file
Copy the next lines into your file:
C:/
cd C:Users%username%AppDataLocalAndroidsdktools
emulator @[YOUR_EMULATOR_DEVICE_NAME]Notes:
Replace
[YOUR_EMULATOR_DEVICE_NAME]
with the device name you created in emulatorTo get the device name go to:
C:Users%username%AppDataLocalAndroidsdktools
Run
cmd
and type:emulator -list-avds
Copy the device name and paste it in the batch file
Save the file as
emulator.bat
and closeNow double click on
emulator.bat
and you got the emulator running!
You can make a batch file, that will open your emulator directly without opening Android Studio. If you are using Windows:
Open Notepad
New file
Copy the next lines into your file:
C:/
cd C:Users%username%AppDataLocalAndroidsdktools
emulator @[YOUR_EMULATOR_DEVICE_NAME]Notes:
Replace
[YOUR_EMULATOR_DEVICE_NAME]
with the device name you created in emulatorTo get the device name go to:
C:Users%username%AppDataLocalAndroidsdktools
Run
cmd
and type:emulator -list-avds
Copy the device name and paste it in the batch file
Save the file as
emulator.bat
and closeNow double click on
emulator.bat
and you got the emulator running!
edited Sep 8 at 19:21
answered Aug 5 '17 at 13:38
mottaz hejaze
19016
19016
Windows also has %LOCALAPPDATA% as a variable, you could shorten that to:%LOCALAPPDATA%Androidsdkemulatoremulator @Pixel_2_API_27
(part after the @ is a device name, obtained from the mentioned-list-avds
– amenthes
Apr 9 at 19:01
Just typingC:
is enough to change the drive. When I include the forward slash, ieC:/
, I get an error in both Powershell and Command Prompt.
– Rokit
May 19 at 20:37
add a comment |
Windows also has %LOCALAPPDATA% as a variable, you could shorten that to:%LOCALAPPDATA%Androidsdkemulatoremulator @Pixel_2_API_27
(part after the @ is a device name, obtained from the mentioned-list-avds
– amenthes
Apr 9 at 19:01
Just typingC:
is enough to change the drive. When I include the forward slash, ieC:/
, I get an error in both Powershell and Command Prompt.
– Rokit
May 19 at 20:37
Windows also has %LOCALAPPDATA% as a variable, you could shorten that to:
%LOCALAPPDATA%Androidsdkemulatoremulator @Pixel_2_API_27
(part after the @ is a device name, obtained from the mentioned -list-avds
– amenthes
Apr 9 at 19:01
Windows also has %LOCALAPPDATA% as a variable, you could shorten that to:
%LOCALAPPDATA%Androidsdkemulatoremulator @Pixel_2_API_27
(part after the @ is a device name, obtained from the mentioned -list-avds
– amenthes
Apr 9 at 19:01
Just typing
C:
is enough to change the drive. When I include the forward slash, ie C:/
, I get an error in both Powershell and Command Prompt.– Rokit
May 19 at 20:37
Just typing
C:
is enough to change the drive. When I include the forward slash, ie C:/
, I get an error in both Powershell and Command Prompt.– Rokit
May 19 at 20:37
add a comment |
up vote
11
down vote
to list the emulators you have
~/Library/Android/sdk/tools/emulator -list-avds
for example, I have this Nexus_5X_API_24
so the command to run that emulator is
cd ~/Library/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_24
Yeah, the emulator binary has the-list-avds
option. This is the easier way
– Subin
Jul 30 at 11:22
add a comment |
up vote
11
down vote
to list the emulators you have
~/Library/Android/sdk/tools/emulator -list-avds
for example, I have this Nexus_5X_API_24
so the command to run that emulator is
cd ~/Library/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_24
Yeah, the emulator binary has the-list-avds
option. This is the easier way
– Subin
Jul 30 at 11:22
add a comment |
up vote
11
down vote
up vote
11
down vote
to list the emulators you have
~/Library/Android/sdk/tools/emulator -list-avds
for example, I have this Nexus_5X_API_24
so the command to run that emulator is
cd ~/Library/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_24
to list the emulators you have
~/Library/Android/sdk/tools/emulator -list-avds
for example, I have this Nexus_5X_API_24
so the command to run that emulator is
cd ~/Library/Android/Sdk/tools && ./emulator -avd Nexus_5X_API_24
answered May 12 at 14:40
DeyaEldeen
3,19952150
3,19952150
Yeah, the emulator binary has the-list-avds
option. This is the easier way
– Subin
Jul 30 at 11:22
add a comment |
Yeah, the emulator binary has the-list-avds
option. This is the easier way
– Subin
Jul 30 at 11:22
Yeah, the emulator binary has the
-list-avds
option. This is the easier way– Subin
Jul 30 at 11:22
Yeah, the emulator binary has the
-list-avds
option. This is the easier way– Subin
Jul 30 at 11:22
add a comment |
up vote
7
down vote
Here’s what you need to do:
1.Download and extract the SDK.
2.Open a terminal and navigate to the “tools” directory.
3.Launch the “android” tool (./android if you are currently in the tools directory).
4.Tick off the “SDK Platform” for each version of Android that you’d like to use in your emulator.
5.Click the “Install N Packages” button.
6.Click each package and tick off “Accept License” (legally, I’m probably required to tell you that this step may take several hours as you read each license ;).
7.Done with those licenses? Great. Click “Install”. Wait for the SDK manager to finish installing your packages, then you can close it.
8.Back in your terminal, still in the tools directory, enter ./android avd which will launch the Android Virtual Device Manager.
9.Click “New” and fill out the form to build the device you’d like to emulate. In the “Target” dropdown, you’ll see the SDK Platforms that you installed earlier. If the version you need is missing, you need to go back and install it. Click OK when you’re done.
10.Click on the device that you just created and click the “Start” button, tweak any options that you need on the Launch Options window, and click “Launch”.
Check this question's answer also.
5
Theandroid
tool is now deprecated
– illright
Aug 22 '17 at 11:06
add a comment |
up vote
7
down vote
Here’s what you need to do:
1.Download and extract the SDK.
2.Open a terminal and navigate to the “tools” directory.
3.Launch the “android” tool (./android if you are currently in the tools directory).
4.Tick off the “SDK Platform” for each version of Android that you’d like to use in your emulator.
5.Click the “Install N Packages” button.
6.Click each package and tick off “Accept License” (legally, I’m probably required to tell you that this step may take several hours as you read each license ;).
7.Done with those licenses? Great. Click “Install”. Wait for the SDK manager to finish installing your packages, then you can close it.
8.Back in your terminal, still in the tools directory, enter ./android avd which will launch the Android Virtual Device Manager.
9.Click “New” and fill out the form to build the device you’d like to emulate. In the “Target” dropdown, you’ll see the SDK Platforms that you installed earlier. If the version you need is missing, you need to go back and install it. Click OK when you’re done.
10.Click on the device that you just created and click the “Start” button, tweak any options that you need on the Launch Options window, and click “Launch”.
Check this question's answer also.
5
Theandroid
tool is now deprecated
– illright
Aug 22 '17 at 11:06
add a comment |
up vote
7
down vote
up vote
7
down vote
Here’s what you need to do:
1.Download and extract the SDK.
2.Open a terminal and navigate to the “tools” directory.
3.Launch the “android” tool (./android if you are currently in the tools directory).
4.Tick off the “SDK Platform” for each version of Android that you’d like to use in your emulator.
5.Click the “Install N Packages” button.
6.Click each package and tick off “Accept License” (legally, I’m probably required to tell you that this step may take several hours as you read each license ;).
7.Done with those licenses? Great. Click “Install”. Wait for the SDK manager to finish installing your packages, then you can close it.
8.Back in your terminal, still in the tools directory, enter ./android avd which will launch the Android Virtual Device Manager.
9.Click “New” and fill out the form to build the device you’d like to emulate. In the “Target” dropdown, you’ll see the SDK Platforms that you installed earlier. If the version you need is missing, you need to go back and install it. Click OK when you’re done.
10.Click on the device that you just created and click the “Start” button, tweak any options that you need on the Launch Options window, and click “Launch”.
Check this question's answer also.
Here’s what you need to do:
1.Download and extract the SDK.
2.Open a terminal and navigate to the “tools” directory.
3.Launch the “android” tool (./android if you are currently in the tools directory).
4.Tick off the “SDK Platform” for each version of Android that you’d like to use in your emulator.
5.Click the “Install N Packages” button.
6.Click each package and tick off “Accept License” (legally, I’m probably required to tell you that this step may take several hours as you read each license ;).
7.Done with those licenses? Great. Click “Install”. Wait for the SDK manager to finish installing your packages, then you can close it.
8.Back in your terminal, still in the tools directory, enter ./android avd which will launch the Android Virtual Device Manager.
9.Click “New” and fill out the form to build the device you’d like to emulate. In the “Target” dropdown, you’ll see the SDK Platforms that you installed earlier. If the version you need is missing, you need to go back and install it. Click OK when you’re done.
10.Click on the device that you just created and click the “Start” button, tweak any options that you need on the Launch Options window, and click “Launch”.
Check this question's answer also.
edited May 23 '17 at 11:55
Community♦
11
11
answered Mar 10 '17 at 13:10
Shailesh
2,01911129
2,01911129
5
Theandroid
tool is now deprecated
– illright
Aug 22 '17 at 11:06
add a comment |
5
Theandroid
tool is now deprecated
– illright
Aug 22 '17 at 11:06
5
5
The
android
tool is now deprecated– illright
Aug 22 '17 at 11:06
The
android
tool is now deprecated– illright
Aug 22 '17 at 11:06
add a comment |
up vote
6
down vote
Assuming you have installed Android studio properly,Open a command prompt and type
emulator -list-avds
which will display all the devices and then type emulator @avd_name
where avd_name is the the name of your emulator installed.
add a comment |
up vote
6
down vote
Assuming you have installed Android studio properly,Open a command prompt and type
emulator -list-avds
which will display all the devices and then type emulator @avd_name
where avd_name is the the name of your emulator installed.
add a comment |
up vote
6
down vote
up vote
6
down vote
Assuming you have installed Android studio properly,Open a command prompt and type
emulator -list-avds
which will display all the devices and then type emulator @avd_name
where avd_name is the the name of your emulator installed.
Assuming you have installed Android studio properly,Open a command prompt and type
emulator -list-avds
which will display all the devices and then type emulator @avd_name
where avd_name is the the name of your emulator installed.
answered Jul 15 '17 at 12:35
TRomesh
1,1311431
1,1311431
add a comment |
add a comment |
up vote
6
down vote
Firstly change the directory where your avd devices are listed; for me it is here:
cd ~/Android/Sdk/tools
Then run the emulator by following command:
./emulator -avd Your_avd_device_name
For me it is:
./emulator -avd Nexus_5X_API_27
That's all.
1
Awesome.. so simple. Thanks
– Chris J Kikoti
Apr 8 at 20:17
add a comment |
up vote
6
down vote
Firstly change the directory where your avd devices are listed; for me it is here:
cd ~/Android/Sdk/tools
Then run the emulator by following command:
./emulator -avd Your_avd_device_name
For me it is:
./emulator -avd Nexus_5X_API_27
That's all.
1
Awesome.. so simple. Thanks
– Chris J Kikoti
Apr 8 at 20:17
add a comment |
up vote
6
down vote
up vote
6
down vote
Firstly change the directory where your avd devices are listed; for me it is here:
cd ~/Android/Sdk/tools
Then run the emulator by following command:
./emulator -avd Your_avd_device_name
For me it is:
./emulator -avd Nexus_5X_API_27
That's all.
Firstly change the directory where your avd devices are listed; for me it is here:
cd ~/Android/Sdk/tools
Then run the emulator by following command:
./emulator -avd Your_avd_device_name
For me it is:
./emulator -avd Nexus_5X_API_27
That's all.
edited Apr 1 at 21:07
answered Apr 1 at 19:05
Vicrobot
515315
515315
1
Awesome.. so simple. Thanks
– Chris J Kikoti
Apr 8 at 20:17
add a comment |
1
Awesome.. so simple. Thanks
– Chris J Kikoti
Apr 8 at 20:17
1
1
Awesome.. so simple. Thanks
– Chris J Kikoti
Apr 8 at 20:17
Awesome.. so simple. Thanks
– Chris J Kikoti
Apr 8 at 20:17
add a comment |
up vote
5
down vote
I already have the Studio installed. But without starting (not installing) the Android Studio you can directly start the emulator with
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktoolsemulator.exe -netdelay none -netspeed full -avd YOUR_AVD_NAME
add a comment |
up vote
5
down vote
I already have the Studio installed. But without starting (not installing) the Android Studio you can directly start the emulator with
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktoolsemulator.exe -netdelay none -netspeed full -avd YOUR_AVD_NAME
add a comment |
up vote
5
down vote
up vote
5
down vote
I already have the Studio installed. But without starting (not installing) the Android Studio you can directly start the emulator with
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktoolsemulator.exe -netdelay none -netspeed full -avd YOUR_AVD_NAME
I already have the Studio installed. But without starting (not installing) the Android Studio you can directly start the emulator with
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktoolsemulator.exe -netdelay none -netspeed full -avd YOUR_AVD_NAME
answered Mar 10 '17 at 17:59
user668338
7703717
7703717
add a comment |
add a comment |
up vote
4
down vote
The path for emulator is
/Users/<Username>/AppData/Local/Android/sdk/tools
add a comment |
up vote
4
down vote
The path for emulator is
/Users/<Username>/AppData/Local/Android/sdk/tools
add a comment |
up vote
4
down vote
up vote
4
down vote
The path for emulator is
/Users/<Username>/AppData/Local/Android/sdk/tools
The path for emulator is
/Users/<Username>/AppData/Local/Android/sdk/tools
edited May 23 '17 at 2:36
Pang
6,751156399
6,751156399
answered May 23 '17 at 1:49
Steve Blanco
411
411
add a comment |
add a comment |
up vote
4
down vote
Assuming you've got Android Studio installed, and SDK in your PATH, it's:
emulator -avd avd_name
To get a list of AVD names, run:
emulator -list-avds
Source: https://developer.android.com/studio/run/emulator-commandline.html
add a comment |
up vote
4
down vote
Assuming you've got Android Studio installed, and SDK in your PATH, it's:
emulator -avd avd_name
To get a list of AVD names, run:
emulator -list-avds
Source: https://developer.android.com/studio/run/emulator-commandline.html
add a comment |
up vote
4
down vote
up vote
4
down vote
Assuming you've got Android Studio installed, and SDK in your PATH, it's:
emulator -avd avd_name
To get a list of AVD names, run:
emulator -list-avds
Source: https://developer.android.com/studio/run/emulator-commandline.html
Assuming you've got Android Studio installed, and SDK in your PATH, it's:
emulator -avd avd_name
To get a list of AVD names, run:
emulator -list-avds
Source: https://developer.android.com/studio/run/emulator-commandline.html
answered Sep 14 '17 at 11:23
designorant
1,498518
1,498518
add a comment |
add a comment |
up vote
3
down vote
For Linux/Ubuntu
Create a new File from Terminal as
gedit emulator.sh (Use any Name for file here i have used "emulator")
now write following lines in this file
cd /home/userName/Android/Sdk/tools/
./emulator @your created Android device Name
(here after @ write the name of your AVD e.g
./emulator @Nexus_5X_API_27
)
Now save the file and run your emulator using following commands
./emulator.sh
In case of Permission denied use following command before above command
chmod +x emulator.sh
All set Go..
amazing and helped save my time so much
– Asfand Shabbir
Mar 28 at 19:06
I tried following the above listed commands, but still not working.
– NarendraJi
May 10 at 14:10
add a comment |
up vote
3
down vote
For Linux/Ubuntu
Create a new File from Terminal as
gedit emulator.sh (Use any Name for file here i have used "emulator")
now write following lines in this file
cd /home/userName/Android/Sdk/tools/
./emulator @your created Android device Name
(here after @ write the name of your AVD e.g
./emulator @Nexus_5X_API_27
)
Now save the file and run your emulator using following commands
./emulator.sh
In case of Permission denied use following command before above command
chmod +x emulator.sh
All set Go..
amazing and helped save my time so much
– Asfand Shabbir
Mar 28 at 19:06
I tried following the above listed commands, but still not working.
– NarendraJi
May 10 at 14:10
add a comment |
up vote
3
down vote
up vote
3
down vote
For Linux/Ubuntu
Create a new File from Terminal as
gedit emulator.sh (Use any Name for file here i have used "emulator")
now write following lines in this file
cd /home/userName/Android/Sdk/tools/
./emulator @your created Android device Name
(here after @ write the name of your AVD e.g
./emulator @Nexus_5X_API_27
)
Now save the file and run your emulator using following commands
./emulator.sh
In case of Permission denied use following command before above command
chmod +x emulator.sh
All set Go..
For Linux/Ubuntu
Create a new File from Terminal as
gedit emulator.sh (Use any Name for file here i have used "emulator")
now write following lines in this file
cd /home/userName/Android/Sdk/tools/
./emulator @your created Android device Name
(here after @ write the name of your AVD e.g
./emulator @Nexus_5X_API_27
)
Now save the file and run your emulator using following commands
./emulator.sh
In case of Permission denied use following command before above command
chmod +x emulator.sh
All set Go..
answered Mar 13 at 11:22
Sibtain Raza Jamali
312
312
amazing and helped save my time so much
– Asfand Shabbir
Mar 28 at 19:06
I tried following the above listed commands, but still not working.
– NarendraJi
May 10 at 14:10
add a comment |
amazing and helped save my time so much
– Asfand Shabbir
Mar 28 at 19:06
I tried following the above listed commands, but still not working.
– NarendraJi
May 10 at 14:10
amazing and helped save my time so much
– Asfand Shabbir
Mar 28 at 19:06
amazing and helped save my time so much
– Asfand Shabbir
Mar 28 at 19:06
I tried following the above listed commands, but still not working.
– NarendraJi
May 10 at 14:10
I tried following the above listed commands, but still not working.
– NarendraJi
May 10 at 14:10
add a comment |
up vote
2
down vote
Got it working for Windows 10:
C:UsersUserNameAppDataLocalAndroidSdktools>emulator -list-avds
Nexus_5X_API_28
C:UsersUserNameAppDataLocalAndroidSdkemulator>emulator -avd Nexus_5X_API_28
add a comment |
up vote
2
down vote
Got it working for Windows 10:
C:UsersUserNameAppDataLocalAndroidSdktools>emulator -list-avds
Nexus_5X_API_28
C:UsersUserNameAppDataLocalAndroidSdkemulator>emulator -avd Nexus_5X_API_28
add a comment |
up vote
2
down vote
up vote
2
down vote
Got it working for Windows 10:
C:UsersUserNameAppDataLocalAndroidSdktools>emulator -list-avds
Nexus_5X_API_28
C:UsersUserNameAppDataLocalAndroidSdkemulator>emulator -avd Nexus_5X_API_28
Got it working for Windows 10:
C:UsersUserNameAppDataLocalAndroidSdktools>emulator -list-avds
Nexus_5X_API_28
C:UsersUserNameAppDataLocalAndroidSdkemulator>emulator -avd Nexus_5X_API_28
answered Jul 23 at 19:23
Rukala
286
286
add a comment |
add a comment |
up vote
2
down vote
This is the commands on Mac
cd ~/Library/Android/Sdk/tools/bin && ./avdmanager list avd
then
cd ~/Library/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
add a comment |
up vote
2
down vote
This is the commands on Mac
cd ~/Library/Android/Sdk/tools/bin && ./avdmanager list avd
then
cd ~/Library/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
add a comment |
up vote
2
down vote
up vote
2
down vote
This is the commands on Mac
cd ~/Library/Android/Sdk/tools/bin && ./avdmanager list avd
then
cd ~/Library/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
This is the commands on Mac
cd ~/Library/Android/Sdk/tools/bin && ./avdmanager list avd
then
cd ~/Library/Android/Sdk/tools && ./emulator -avd NAME_OF_YOUR_DEVICE
answered Jul 27 at 14:49
Andy Wilson
316
316
add a comment |
add a comment |
up vote
1
down vote
if you installed Git on your system. then you can run .sh bash code. I create the bash code for search from your created ADV Devices and list them. then you can select the number of adv device for run emulator without running Android studio.
link:
adv-emulator.sh
note [windows os]: please first add %appdata%..LocalAndroidSdkemulator
to your system Environment path, otherwise the bash-code not work.
add a comment |
up vote
1
down vote
if you installed Git on your system. then you can run .sh bash code. I create the bash code for search from your created ADV Devices and list them. then you can select the number of adv device for run emulator without running Android studio.
link:
adv-emulator.sh
note [windows os]: please first add %appdata%..LocalAndroidSdkemulator
to your system Environment path, otherwise the bash-code not work.
add a comment |
up vote
1
down vote
up vote
1
down vote
if you installed Git on your system. then you can run .sh bash code. I create the bash code for search from your created ADV Devices and list them. then you can select the number of adv device for run emulator without running Android studio.
link:
adv-emulator.sh
note [windows os]: please first add %appdata%..LocalAndroidSdkemulator
to your system Environment path, otherwise the bash-code not work.
if you installed Git on your system. then you can run .sh bash code. I create the bash code for search from your created ADV Devices and list them. then you can select the number of adv device for run emulator without running Android studio.
link:
adv-emulator.sh
note [windows os]: please first add %appdata%..LocalAndroidSdkemulator
to your system Environment path, otherwise the bash-code not work.
answered Mar 6 at 20:47
Hamed Taheri
4919
4919
add a comment |
add a comment |
up vote
1
down vote
On windows
......Androidsdktoolsbinavdmanager list avds
......Androidsdktoolsemulator.exe -avd Nexus_5X_API_27
2
Brings up PANIC: Missing emulator engine program for 'x86' CPU. Although I can start it in Android Studio?
– user668338
Jul 11 at 17:42
You can go to $ANDROID_HOME/emulator -avd DEVICE_NAME stackoverflow.com/questions/26483370/…
– brownmagik352
Sep 8 at 0:51
add a comment |
up vote
1
down vote
On windows
......Androidsdktoolsbinavdmanager list avds
......Androidsdktoolsemulator.exe -avd Nexus_5X_API_27
2
Brings up PANIC: Missing emulator engine program for 'x86' CPU. Although I can start it in Android Studio?
– user668338
Jul 11 at 17:42
You can go to $ANDROID_HOME/emulator -avd DEVICE_NAME stackoverflow.com/questions/26483370/…
– brownmagik352
Sep 8 at 0:51
add a comment |
up vote
1
down vote
up vote
1
down vote
On windows
......Androidsdktoolsbinavdmanager list avds
......Androidsdktoolsemulator.exe -avd Nexus_5X_API_27
On windows
......Androidsdktoolsbinavdmanager list avds
......Androidsdktoolsemulator.exe -avd Nexus_5X_API_27
answered Jul 11 at 5:51
Tarasantan
193
193
2
Brings up PANIC: Missing emulator engine program for 'x86' CPU. Although I can start it in Android Studio?
– user668338
Jul 11 at 17:42
You can go to $ANDROID_HOME/emulator -avd DEVICE_NAME stackoverflow.com/questions/26483370/…
– brownmagik352
Sep 8 at 0:51
add a comment |
2
Brings up PANIC: Missing emulator engine program for 'x86' CPU. Although I can start it in Android Studio?
– user668338
Jul 11 at 17:42
You can go to $ANDROID_HOME/emulator -avd DEVICE_NAME stackoverflow.com/questions/26483370/…
– brownmagik352
Sep 8 at 0:51
2
2
Brings up PANIC: Missing emulator engine program for 'x86' CPU. Although I can start it in Android Studio?
– user668338
Jul 11 at 17:42
Brings up PANIC: Missing emulator engine program for 'x86' CPU. Although I can start it in Android Studio?
– user668338
Jul 11 at 17:42
You can go to $ANDROID_HOME/emulator -avd DEVICE_NAME stackoverflow.com/questions/26483370/…
– brownmagik352
Sep 8 at 0:51
You can go to $ANDROID_HOME/emulator -avd DEVICE_NAME stackoverflow.com/questions/26483370/…
– brownmagik352
Sep 8 at 0:51
add a comment |
up vote
1
down vote
I am working with a React Native project and I also faced this problem
I solved it by making a .bat file in my desktop that I can open fast
The content of the .bat is
C:UsershariaAppDataLocalAndroidsdkemulatoremulator -avd Pixel_2_XL_API_27
Where haria is my Windows username and
Pixel_2_XL_API_27 is my emulator name
If you want to see your emulator name, open CMD (or PowerShell) and type (In Windows)
cd C:UsershariaAppDataLocalAndroidsdkemulator
Then to see the emulator(s) name
./emulator -list-avds
add a comment |
up vote
1
down vote
I am working with a React Native project and I also faced this problem
I solved it by making a .bat file in my desktop that I can open fast
The content of the .bat is
C:UsershariaAppDataLocalAndroidsdkemulatoremulator -avd Pixel_2_XL_API_27
Where haria is my Windows username and
Pixel_2_XL_API_27 is my emulator name
If you want to see your emulator name, open CMD (or PowerShell) and type (In Windows)
cd C:UsershariaAppDataLocalAndroidsdkemulator
Then to see the emulator(s) name
./emulator -list-avds
add a comment |
up vote
1
down vote
up vote
1
down vote
I am working with a React Native project and I also faced this problem
I solved it by making a .bat file in my desktop that I can open fast
The content of the .bat is
C:UsershariaAppDataLocalAndroidsdkemulatoremulator -avd Pixel_2_XL_API_27
Where haria is my Windows username and
Pixel_2_XL_API_27 is my emulator name
If you want to see your emulator name, open CMD (or PowerShell) and type (In Windows)
cd C:UsershariaAppDataLocalAndroidsdkemulator
Then to see the emulator(s) name
./emulator -list-avds
I am working with a React Native project and I also faced this problem
I solved it by making a .bat file in my desktop that I can open fast
The content of the .bat is
C:UsershariaAppDataLocalAndroidsdkemulatoremulator -avd Pixel_2_XL_API_27
Where haria is my Windows username and
Pixel_2_XL_API_27 is my emulator name
If you want to see your emulator name, open CMD (or PowerShell) and type (In Windows)
cd C:UsershariaAppDataLocalAndroidsdkemulator
Then to see the emulator(s) name
./emulator -list-avds
answered Sep 8 at 15:27
Hari Anugrah
225
225
add a comment |
add a comment |
up vote
0
down vote
For Windows
In case anyone looking for shortcut / batch script - Gist - Download batch file.
@echo off
IF [%1]== (GOTO ExitWithPrompt)
set i=1
FOR /F "delims=" %%i IN ('emulator -list-avds') DO (
set /A i=i+1
set em=%%i
if %i% == %1 (
echo Starting %em%
emulator -avd %em%
EXIT /B 0
)
)
GOTO :Exit
:ExitWithPrompt
emulator -list-avds
echo Please enter the emulator number to start
:Exit
EXIT /B 0
Usage
D:>start-emulator
Nexus_5_API_26
Please enter the emulator number to start
D:>start-emulator 1
Starting Nexus_5_API_26
HAX is working and emulator runs in fast virt mode.
This lists me exactly 0 AVDs available. How to install/download/seetup AVD from commandline?
– Tino
Oct 22 at 10:05
@Tino I will share seperate gist for that by tomorrow EOD.
– Prachil Tambe
Oct 22 at 10:07
add a comment |
up vote
0
down vote
For Windows
In case anyone looking for shortcut / batch script - Gist - Download batch file.
@echo off
IF [%1]== (GOTO ExitWithPrompt)
set i=1
FOR /F "delims=" %%i IN ('emulator -list-avds') DO (
set /A i=i+1
set em=%%i
if %i% == %1 (
echo Starting %em%
emulator -avd %em%
EXIT /B 0
)
)
GOTO :Exit
:ExitWithPrompt
emulator -list-avds
echo Please enter the emulator number to start
:Exit
EXIT /B 0
Usage
D:>start-emulator
Nexus_5_API_26
Please enter the emulator number to start
D:>start-emulator 1
Starting Nexus_5_API_26
HAX is working and emulator runs in fast virt mode.
This lists me exactly 0 AVDs available. How to install/download/seetup AVD from commandline?
– Tino
Oct 22 at 10:05
@Tino I will share seperate gist for that by tomorrow EOD.
– Prachil Tambe
Oct 22 at 10:07
add a comment |
up vote
0
down vote
up vote
0
down vote
For Windows
In case anyone looking for shortcut / batch script - Gist - Download batch file.
@echo off
IF [%1]== (GOTO ExitWithPrompt)
set i=1
FOR /F "delims=" %%i IN ('emulator -list-avds') DO (
set /A i=i+1
set em=%%i
if %i% == %1 (
echo Starting %em%
emulator -avd %em%
EXIT /B 0
)
)
GOTO :Exit
:ExitWithPrompt
emulator -list-avds
echo Please enter the emulator number to start
:Exit
EXIT /B 0
Usage
D:>start-emulator
Nexus_5_API_26
Please enter the emulator number to start
D:>start-emulator 1
Starting Nexus_5_API_26
HAX is working and emulator runs in fast virt mode.
For Windows
In case anyone looking for shortcut / batch script - Gist - Download batch file.
@echo off
IF [%1]== (GOTO ExitWithPrompt)
set i=1
FOR /F "delims=" %%i IN ('emulator -list-avds') DO (
set /A i=i+1
set em=%%i
if %i% == %1 (
echo Starting %em%
emulator -avd %em%
EXIT /B 0
)
)
GOTO :Exit
:ExitWithPrompt
emulator -list-avds
echo Please enter the emulator number to start
:Exit
EXIT /B 0
Usage
D:>start-emulator
Nexus_5_API_26
Please enter the emulator number to start
D:>start-emulator 1
Starting Nexus_5_API_26
HAX is working and emulator runs in fast virt mode.
edited Sep 22 at 1:46
answered Sep 22 at 1:33
Prachil Tambe
656
656
This lists me exactly 0 AVDs available. How to install/download/seetup AVD from commandline?
– Tino
Oct 22 at 10:05
@Tino I will share seperate gist for that by tomorrow EOD.
– Prachil Tambe
Oct 22 at 10:07
add a comment |
This lists me exactly 0 AVDs available. How to install/download/seetup AVD from commandline?
– Tino
Oct 22 at 10:05
@Tino I will share seperate gist for that by tomorrow EOD.
– Prachil Tambe
Oct 22 at 10:07
This lists me exactly 0 AVDs available. How to install/download/seetup AVD from commandline?
– Tino
Oct 22 at 10:05
This lists me exactly 0 AVDs available. How to install/download/seetup AVD from commandline?
– Tino
Oct 22 at 10:05
@Tino I will share seperate gist for that by tomorrow EOD.
– Prachil Tambe
Oct 22 at 10:07
@Tino I will share seperate gist for that by tomorrow EOD.
– Prachil Tambe
Oct 22 at 10:07
add a comment |
up vote
0
down vote
(Only for Windows)
Why to torture yourself? Make a Simple BAT file ! :
- Open Notepad
- Create the command as shown below
- Save as *.bat
- (Optional) Create a shortcut to that *.bat, rename shortcut and change icon
Here is the command:
cd /d yourSdkPathemulator && emulator -avd yourAVDName
Example:
cd /d D:Android_SDKemulator && emulator -avd Nexus_5_API_28
add a comment |
up vote
0
down vote
(Only for Windows)
Why to torture yourself? Make a Simple BAT file ! :
- Open Notepad
- Create the command as shown below
- Save as *.bat
- (Optional) Create a shortcut to that *.bat, rename shortcut and change icon
Here is the command:
cd /d yourSdkPathemulator && emulator -avd yourAVDName
Example:
cd /d D:Android_SDKemulator && emulator -avd Nexus_5_API_28
add a comment |
up vote
0
down vote
up vote
0
down vote
(Only for Windows)
Why to torture yourself? Make a Simple BAT file ! :
- Open Notepad
- Create the command as shown below
- Save as *.bat
- (Optional) Create a shortcut to that *.bat, rename shortcut and change icon
Here is the command:
cd /d yourSdkPathemulator && emulator -avd yourAVDName
Example:
cd /d D:Android_SDKemulator && emulator -avd Nexus_5_API_28
(Only for Windows)
Why to torture yourself? Make a Simple BAT file ! :
- Open Notepad
- Create the command as shown below
- Save as *.bat
- (Optional) Create a shortcut to that *.bat, rename shortcut and change icon
Here is the command:
cd /d yourSdkPathemulator && emulator -avd yourAVDName
Example:
cd /d D:Android_SDKemulator && emulator -avd Nexus_5_API_28
answered Oct 30 at 18:54
Zakir
108110
108110
add a comment |
add a comment |
up vote
0
down vote
If you are on windows, what about a shortcut ? It is very easy to place whatever you want ant the icon is descriptive and nice.
- First, navigate to your android sdk, probably at
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktools
- Then right click on emulator.exe and then click create shortcut.
- Your new and shiny shortcut gets created, probably with a predefined name.
- Right click on the shortcut, and on the target field (my computer is on spanish) add an extra parameter with the name of your device with an
@
in front (take a look at the picture below )
now you can do whatever yhou want with that shortcut, put on the desktop, bind it to the start-menu or whatever
add a comment |
up vote
0
down vote
If you are on windows, what about a shortcut ? It is very easy to place whatever you want ant the icon is descriptive and nice.
- First, navigate to your android sdk, probably at
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktools
- Then right click on emulator.exe and then click create shortcut.
- Your new and shiny shortcut gets created, probably with a predefined name.
- Right click on the shortcut, and on the target field (my computer is on spanish) add an extra parameter with the name of your device with an
@
in front (take a look at the picture below )
now you can do whatever yhou want with that shortcut, put on the desktop, bind it to the start-menu or whatever
add a comment |
up vote
0
down vote
up vote
0
down vote
If you are on windows, what about a shortcut ? It is very easy to place whatever you want ant the icon is descriptive and nice.
- First, navigate to your android sdk, probably at
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktools
- Then right click on emulator.exe and then click create shortcut.
- Your new and shiny shortcut gets created, probably with a predefined name.
- Right click on the shortcut, and on the target field (my computer is on spanish) add an extra parameter with the name of your device with an
@
in front (take a look at the picture below )
now you can do whatever yhou want with that shortcut, put on the desktop, bind it to the start-menu or whatever
If you are on windows, what about a shortcut ? It is very easy to place whatever you want ant the icon is descriptive and nice.
- First, navigate to your android sdk, probably at
C:UsersYOURUSERNAMEAppDataLocalAndroidSdktools
- Then right click on emulator.exe and then click create shortcut.
- Your new and shiny shortcut gets created, probably with a predefined name.
- Right click on the shortcut, and on the target field (my computer is on spanish) add an extra parameter with the name of your device with an
@
in front (take a look at the picture below )
now you can do whatever yhou want with that shortcut, put on the desktop, bind it to the start-menu or whatever
answered yesterday
Danielo515
1,07311123
1,07311123
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f42718973%2frun-avd-emulator-without-android-studio%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
2
This is my main gripe about android development, the mainstream AOSP support for cli based DIY development with your own text editor is almost non existent... I'm comparing to Vue/React development, which is a world ahead.
– Ray Foss
Jan 24 at 20:10