Reputation: 41
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
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
Reputation: 93133
To add a new AVD
in eclipse:
Check what version you are using in your project and create a new AVD with that target version.
Upvotes: 3