Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
136 views
in Technique[技术] by (71.8m points)

android - How to open the AVD manager on Ubuntu Linux from the command line?

How to open the AVD manager on Ubuntu Linux from the command line?

question from:https://stackoverflow.com/questions/27202353/how-to-open-the-avd-manager-on-ubuntu-linux-from-the-command-line

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here's the command-line usage for creating an AVD:

android create avd -n -t [- ] ...

Example : android create avd -n my_android1.5 -t 2

If the target you selected was a standard Android system image ("Type: platform"), the android tool next asks you whether you want to create a custom hardware profile.

Android 1.5 is a basic Android platform. Do you wish to create a custom hardware profile [no]

Use the create avd command to create a new AVD, specifying the --skin option with a value that references either a default skin name (such as "WVGA800") or a custom skin resolution (such as 240x432). Here's an example:

android create avd -n -t --skin WVGA800

or you can refer from :-

http://developer.android.com/tools/devices/managing-avds-cmdline.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...