Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'No active compatible AVD's or devices found

I'm new with Eclipse ADT, and I tried to run an app on my tablet (a Samsung Galaxy Note 10.1), but there is an error as below:

[2013-12-26 12:37:41 - SDK_Example] ------------------------------

[2013-12-26 12:37:41 - SDK_Example] Android Launch!

[2013-12-26 12:37:41 - SDK_Example] adb is running normally.

[2013-12-26 12:37:41 - SDK_Example] Performing com.metaio.Example.MainActivity activity launch

[2013-12-26 12:37:41 - SDK_Example] No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD.

Can anyone tell me why my device isn't found?

like image 927
user3135716 Avatar asked Dec 26 '13 04:12

user3135716


2 Answers

So if you are using emulator then close it.
In Eclipse select Run > Run Configurations > Target > Always prompt to pick device > Run.
Now select a a device from the list or a launch a new emulator. The next time you Run the project it should work.

like image 114
vovahost Avatar answered Oct 21 '22 22:10

vovahost


Seems like your device is not getting detected by the ADB.

Check if you have enabled USB debugging in your tablet or not. Sometimes disconnecting and re-connecting the device also makes it work. Also bear in mind that the API level of your application should be supported by your device.

like image 40
Swayam Avatar answered Oct 21 '22 21:10

Swayam