How to fix Android emulator not responding after launch behaviour?
The below is the displayed output in the console:
[2011-08-10 15:59:37 - Activities] ------------------------------
[2011-08-10 15:59:37 - Activities] Android Launch!
[2011-08-10 15:59:37 - Activities] adb is running normally.
[2011-08-10 15:59:37 - Activities] Performing net.learn2develop.Activities.ActivitiesActivity activity launch
[2011-08-10 15:59:37 - Activities] Automatic Target Mode: launching new emulator with compatible AVD 'andy2'
[2011-08-10 15:59:37 - Activities] Launching a new emulator with Virtual Device 'andy2'
[2011-08-10 15:59:38 - Emulator]
[2011-08-10 15:59:38 - Emulator] This application ha开发者_如何学运维s requested the Runtime to terminate it in an unusual way.
[2011-08-10 15:59:38 - Emulator] Please contact the application's support team for more information.
[2011-08-10 15:59:40 - Emulator] Failed to allocate memory: 8
I am getting this error regularly. Please help me out of this.
This worked for me.
- Open
AVD Manager
Show Advanced Settings
- Choose
Cold boot
from Boot option.
Force quit your Emulator
, and run again.
Lower the ram size to 512 or 256 MB as there must be a problem allocating the memory to the emulator.
Lower the "Device ram size" under "Hardware" to 512 instead of 1024 and see if that helps.
Close the emulator and open the AVD manager, select the pencil icon for the emulator device, click show advanced details when the pencil icon opens up and then select cold boot under boot options and load the emulator again this should work, just tried it now
Go to
C:\Users\PC_NAME\.android\avd\Yours_Phone.avd
- There you will find a file named
config.ini
.Open it in notepad - Inside this file you will find something like
hw.ramSize = 1536
here decrease the ramsize to 512 likehw.ramSize = 512
and restart your emulator again. Hope everything will works fine
Using Android 3.1 emulator is near useless and non-functional.
If you want to test your app > 2.3 then you will likely need to buy a device.
If you don't need your app to run on greater than 2.3 then change your emulator version to 2.3.3
check tools.android.com for up and coming hardware acceleration which will allow emulation of 3.0 onwards.
Cold Boot worked for me, but it took me a bit of time to find where the option is.
Tools > Device Manager (opens the panel on the right)
Then you need to click on the little triangle to open the drop-down menu to do Cold Boot.
screenshot showing where cold boot is
I had a same problem with this, I run Android emulator successfully but not response any more. I run android studio and select the run Android Virtual Device Manager to select the current emulator Click the right bottom menu and select "Cold boot now", it worked for me. Good luck
These steps worked for me
- Close The Emulator
- Open
Device Manager
in the right of Android Studio - Select the emulator and then select the drop down arrow
- Select
Cold Boot Now
精彩评论