Eclipse is in another hard drive (e:). While avd are in c:/Users/Myname/Android. Problem is that when I run as android application, nothing happens, though the emulator is running. The app is working on the physical phone. I've read several answers, all vague. Help?
Asked
Active
Viewed 136 times
1
-
Post the logcat and also the console output. – Darwind May 29 '13 at 22:49
-
what your console says...? – karan May 29 '13 at 22:52
1 Answers
1
I suspect the Android Debug Bridge (adb) isn't running or isn't correctly running. Try running
adb devices
If your emulator is not listed, try running
adb kill-server
adb devices
Note that adb is installed in the platform-tools
subdirectory within your android sdk installation.

HexAndBugs
- 5,549
- 2
- 27
- 36
-
Thanks flight, I've just typed adb in the command line and that kinda woke up the system. – Muteking May 30 '13 at 08:08
-
If this has fixed your problem, please remember to accept the answer. – HexAndBugs May 30 '13 at 10:19