Reputation: 91
I searched trough many questions and couldn't find an answer that fix my problem. I'm new on creating Android projects and I'm still getting familiarized with the eclipse platform.
To the point, when I run my project I get this error
No compatible targets were found. Do you wish to add new Android Virtual Device?
I changed the AndroidManifest.xml from targetSdkVersion="18" to "15" (Which is my device level, Android version 4.0.4, correct me if I'm wrong)
Then I clicked on Run Configuration and switched from "Launch on all compatible devices/AVD's" to "Always prompt to pick device", and still couldn't get the project to work.
When I reverted the Run Configuration I get this output everytime I try to run the project
[2013-12-15 21:27:28 - MyFirstApp] No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD.
What's the meaning of both messages? How can I make it work?
Some details: Android Version: 4.0.4 OS: Windows XP Samsung Galaxy S DUOS
Upvotes: 0
Views: 1439
Reputation: 4821
Please follow the steps
Step 1
Try this link to download the driver software - http://samsung-kies.en.softonic.com/
Step 2
Step 3
Now you are good to start testing your applications on device.
Upvotes: 1
Reputation: 3288
You have to have Samsung Kies installed on your computer so you can have drivers for your device, also, from eclipse:
window -> show view -> devices
if you don't see your device here, this means either your ADB is not running, or your device is not recognized by your computer
also verify you have debug mode enabled in your device
Upvotes: 0
Reputation: 303
Do you have the usb debug driver for you device installed? This is the driver that allows your device to "comunicate"with eclipse in order to debug
Upvotes: 0