I installed android studio and tried to run easy projects.
But I caught strange error message:
Waiting for device.
/usr/local/idea/android-studio/sdk
The same problem but different solution, I modified my Virtual Device, I changed Memory option and Internal Storage, and it works fine. RAM:512 , VM HEap: 192, Internal Storage=200, SD Card Size: 200 for Device Nexus 4 android 4.2.2.
First make sure you are running Android Studio version above 0.3.2 because there was some issue reported regarding the same in AS 0.3.2 . If it is not you can update it from Help >Check for update
.
If you are already running AS above 0.3.2 :
Seems like issue is with your emulator not with Android Studio. It may happen that you are trying to install application before even the emulator started properly.
Wait till the home screen appears in the emulator before trying to install any application.
Also try to install any apk in Emulator from command line
Steps to install
adb devices
to make sure yout emulator is running
properly. It will show all your running emulators.adb install
YOUR_FULL_APK_PATH
, YOUR_FULL_APK_PATH is of any .apk file path in
your system.Please update if this works fine.