Reputation: 41
I've fully searched this site in order to solve my problem without any success.
My device is Sony Xperia Go (ST27i)
When I want to run my android application in Eclipse, I get this error:
No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD.
But I can see my device name in "device list" linked to USB ports.
Can you please help me about this problem?
Thank you.
Upvotes: 0
Views: 3008
Reputation: 41
For future readers may have this problem:
I've installed Sony PC Companion and now I can use my phone in order to test the application.
Upvotes: 0
Reputation: 5263
Can you connect to your device? Try this from the command line:
adb shell
If this fails try this as root:
killall adb
adb shell
Upvotes: 0
Reputation: 1265
see the
<uses-sdk
android:minSdkVersion="see here"
android:targetSdkVersion="see here" />
for compatibility in your manifest
Upvotes: 1