Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When the Android emulator is launched in Windows XP/Windows 7), the command prompt opens 2-3 times. So why does that open?

Anyone know of a reason for this?

share|improve this question
Some things are just easier to do using existing command line tools, rather than try to piece together how to do it with API calls. – Marc B Dec 23 '11 at 6:08
Hello sir please open this link chat.stackoverflow.com/rooms/6077/room-for-android-and-kalpen . – Yog Guru Dec 23 '11 at 6:30

1 Answer

up vote 9 down vote accepted

when you launches the emulator, by default it executes batch file for launching the emulator file. so because of running of these batch files , you can see the command prompt opened & closed.

share|improve this answer
what? any description can you give about batch files? I see java jni and set up file for java getting called for avd..avd config files are called.. – MKJParekh Dec 23 '11 at 12:29
1  
those file are called by batch execute of Batch Files @Frankenstein – Lucifer Dec 23 '11 at 12:42
I want to know which batch files are called..cause I am searching form morning and till now On net i can't find any clues.. – MKJParekh Dec 23 '11 at 12:46
I am searching for this ans since Kalpesh asked me personally..and I can't find any thing about what actually emulator -avd name command performs..they just say start emulator but how? nowhere defined – MKJParekh Dec 23 '11 at 12:51
# need to use "java.ext.dirs" because "-jar" causes classpath to be ignored exec "$java_cmd" \ -Xmx256M $os_opts $java_debug \ -Dcom.android.sdkmanager.toolsdir="$progdir" \ -classpath "$jarpath:$swtpath/swt.jar" \ com.android.sdkmanager.Main "$@" – Lucifer Dec 24 '11 at 3:33
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.