1

I have created an Android 4.0 AVD. When I start the AVD and go to run my app, there is a red "X" next to the 4.0 AVD. When I choose that AVD, it does not install the app.

In my AndroidManifest.xml, I have <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/> , which I think should be fine for a 4.0 device (SKD 16 is 4.1)

Here's a screen shot of the Android Device Chooser enter image description here

Chris
  • 5,485
  • 15
  • 68
  • 130
  • Can you paste the log output from the Console. Or if you try to use adb directly (from the platform-tools folder in the sdk), adb -e install can you paste the output of that? – Greg Giacovelli Oct 08 '12 at 20:39

1 Answers1

0

Try these:

  1. Give your adb a breath by "adb kill-server" and "adb start-server" and see if it fixed
  2. Let eclipse Run button, start your emulator instead of manually starting that
  3. Recreate your avd with other versions of sdk and check if they work. If only version 4.0 doesn't work, I guess you must remove this version (4.0) sdk and install it again from scratch.
Mohsen Afshin
  • 13,273
  • 10
  • 65
  • 90