Note that there are some explanatory texts on larger screens.

plurals
  1. POThe Android emulator is not starting, showing "invalid command-line parameter"
    text
    copied!<p>I made a simple "Hello World" program in <a href="http://en.wikipedia.org/wiki/Eclipse_%28software%29">Eclipse</a>. I added nothing to a Java file and only added a text view in file <code>main.xml</code> as</p> <pre><code>//main.xml file &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" &gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Hello World" /&gt; &lt;/LinearLayout&gt; </code></pre> <p>And now when I run my program it shows the following in the console.</p> <pre><code>//console output [2011-07-10 07:10:22 - demo] ------------------------------ [2011-07-10 07:10:22 - demo] Android Launch! [2011-07-10 07:10:24 - demo] adb is running normally. [2011-07-10 07:10:24 - demo] Performing com.demo.DemoActivity activity launch [2011-07-10 07:10:25 - demo] Automatic Target Mode: launching new emulator with compatible AVD 'vishal' [2011-07-10 07:10:25 - demo] Launching a new emulator with Virtual Device 'vishal' [2011-07-10 07:11:06 - Emulator] invalid command-line parameter: Files\Android\android-sdk\tools/emulator-arm.exe. [2011-07-10 07:11:07 - Emulator] Hint: use '@foo' to launch a virtual device named 'foo'. [2011-07-10 07:11:07 - Emulator] please use -help for more information //--------------------------------------------------------------------------------/ </code></pre> <p>This shows my <a href="http://developer.android.com/guide/developing/devices/index.html">Android Virtual Device</a> (AVD) could not start due to some reason. What can I do to fix this problem?</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload