0

I launched two emulators to send SMS on each other but whenever I go to "Run Configuration" to select emulators, it's showing only one running emulator.

Could you please tell me how to fix it?

Hope to hear from you soon.

Regards,

Parmanand

Parmanand
  • 355
  • 2
  • 6
  • 15
  • there may be some mismatch between the your minsdkversion,targetversion in the manifest and the emulator's android version – vinoth May 16 '13 at 12:48

3 Answers3

2

its eclipse problem. just restart it. until you didnt get it..

Sagar Maiyad
  • 12,655
  • 9
  • 63
  • 99
2

Check your AVD Target version. else Right click your project -> choose run as -> run configurations ->choose target -> In deployment target selection mode ->choose always prompt to pick device

it is used to finding compatible device.

Daniel
  • 10,864
  • 22
  • 84
  • 115
peter
  • 1,028
  • 9
  • 21
1

Check to see if both emulators are compatible with the minimum SDK version, i.e. android:minSdkVersion as you can see in your manifest:

<uses-sdk android:minSdkVersion="integer"
          android:targetSdkVersion="integer"
          android:maxSdkVersion="integer" />
Sean
  • 5,176
  • 2
  • 34
  • 50