Additional Info RE Android Dev environment;
    JDK is Java SE 6u27

On Tue, Aug 30, 2011 at 6:11 AM, towers1209 <[email protected]>wrote:

> I was going through the "Hello World" tutorial (http://
> developer.android.com/resources/tutorials/hello-world.html) and I
> cannot get past the "invalid command-line parameter" emulator error
> messages.
>
> I need help in figuring out why.
> =======================
> [2011-08-30 05:04:22 - SDK Manager] Updated AVD 'my_avd' based on
> Android 3.2, ARM (armeabi) processor,
> [2011-08-30 05Eclipse 3.7 (Indigo) Classic IDE:04:22 - SDK Manager]
> with the following hardware config:
> [2011-08-30 05:04:22 - SDK Manager] hw.lcd.density=160
> [2011-08-30 05:04:22 - SDK Manager] hw.keyboard.lid=no
> [2011-08-30 05:04:22 - SDK Manager] vm.heapSize=48
> [2011-08-30 05:04:22 - SDK Manager] hw.ramSize=256
> [2011-08-30 05:07:21 - HelloAndroid] ------------------------------
> [2011-08-30 05:07:21 - HelloAndroid] Android Launch!
> [2011-08-30 05:07:21 - HelloAndroid] adb is running normally.
> [2011-08-30 05:07:21 - HelloAndroid] Performing
> com.example.helloandroid.HelloAndroid activity launch
> [2011-08-30 05:07:21 - HelloAndroid] Automatic Target Mode: launching
> new emulator with compatible AVD 'my_avd'
> [2011-08-30 05:07:21 - HelloAndroid] Launching a new emulator with
> Virtual Device 'my_avd'
> [2011-08-30 05:07:21 - Emulator] invalid command-line parameter: Files
> \Android\android-sdk\tools/emulator-arm.exe.
> [2011-08-30 05:07:21 - Emulator] Hint: use '@foo' to launch a virtual
> device named 'foo'.
> [2011-08-30 05:07:21 - Emulator] please use -help for more information
> =======================
>
> I followed the instructions in setting up my Eclipse environment using
> the following"
>  -- installer_r12-windows.exe
>  -- Eclipse 3.7 (Indigo) Classic IDE
>  -- AVD is "my_avd" setup with Android 3.2 (API Level 13)
>
> HelloAndroid project build  target is also Android 3.2
>
> I went through the exercise a few times and I always end up with the
> same emulator error message.
>
> Following is the tutorial java code:
> =====================
> package com.example.helloandroid;
>
> import android.app.Activity;
> import android.os.Bundle;
> import android.widget.TextView;
>
> public class HelloAndroid extends Activity {
>   /** Called when the activity is first created. */
>   @Override
>   public void onCreate(Bundle savedInstanceState) {
>       super.onCreate(savedInstanceState);
>       TextView tv = new TextView(this);
>       tv.setText("Hello, Android");
>       setContentView(tv);
>   }
> }
> =====================
>
> I need to get past this and I need someone's help.
>
> Thanks in advance....
>
> Loreto E Torres
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to