Reputation: 9
I created an Android Application in Eclipse. After Running the project, I get this error:
MyAndroid] Failed to install MyAndroid.apk on device 'emulator-5554': device not found
How can I resolve this problem?
Upvotes: 1
Views: 70
Reputation: 8264
You need to have a device emulator running OR have a device connected to your development box via USB. You can run through this process by reviewing this article on how to manage Android Virtual Devices (AVDs).
Don't forget that before you're ready to publish to the Market, you should always test on an actual device!! AVDs are no subsitute for the real thing. Test on as many real devices as you can. A good article explains testing on actual hardware here.
Upvotes: 0
Reputation: 31423
Start your emulator and wait for it to setup completely. Make sure that when you run the "adb devices" command, you will see it in the list. If this does not help, create a new AVD following this instructions and use the new AVD.
Upvotes: 2