user284208
user284208

Reputation: 41

Can't load Android Virtual Device

when I run my android application using eclipse 3.5 I receive an error called

"Android AVD Error.

No compatible target were found.Do you wish to add a new Android Virtual Device. "

How can I load Android Virtual Device ?

Upvotes: 4

Views: 13180

Answers (2)

Andrious Solutions
Andrious Solutions

Reputation: 728

I found that I didn't have API 25 installed, and so I changed it from 'minSdkVersion 25' to 'minSdkVersion 19' and the error went away.

defaultConfig {

      ............

    minSdkVersion 19

    targetSdkVersion 26

Upvotes: 0

Macarse
Macarse

Reputation: 93133

To add a new AVD in eclipse:

  • Window => Android SDK and AVD manager
  • New

Check what version you are using in your project and create a new AVD with that target version.

Upvotes: 3

Related Questions