user2130654
user2130654

Reputation: 1

Android emulator device not launching

When I try to launch the emulator its showing this error...though everything was working fine 2 days back..even

[2013-03-04 11:35:28 - h m s] Android Launch!
[2013-03-04 11:35:28 - h m s] a d b is running normally.
[2013-03-04 11:35:28 - h m s] Performing com.my.Intro activity launch
[2013-03-04 11:35:28 - h ms] Automatic Target Mode: launching new emulator with compatible A V D 'Mobile'
[2013-03-04 11:35:28 - h ms] Launching a new emulator with Virtual Device 'Mobile'
[2013-03-04 11:36:14 - Emulator] N AND: could not write file C:\`D O C U M E~1\R I TI K A~1.PAN\LOCALS~1\Temp\\A n d r o i d E m u l a t o r\TMP3E.t mp, No space left on device

Upvotes: 0

Views: 1848

Answers (5)

AndroidEnthusiastic
AndroidEnthusiastic

Reputation: 931

Create new avd in virtual manager and then try again. set ram size as 256 and then try again. or in command prompt try this

      android list avd
    emulator -avd My_Avd_Name -wipe-data

or in eclipse run -> run configurations -> choose your run config -> Target ->Additional Emulator Command Line Options : -partition-size 512

Upvotes: 0

sanjeeb
sanjeeb

Reputation: 87

Please check if your C drive has some space left. Because clearly as per the trace,

could not write file C:`D O C U M E~1\R I TI K A~1.PAN\LOCALS~1\Temp\A n d r o i d E m u l a t o r\TMP3E.t mp, No space left on device

So clean up some disk memory and try again.

Upvotes: 0

pradeep
pradeep

Reputation: 185

Close all emulators .

Open command prompt ,navigate to android sdk >tools > folder .And

type following command .

emulator -avd My_Avd_Name.

Here My_Avd_Name is name of avd which you need to show(which already exist in our AVD manager list).

Upvotes: 1

Naga
Naga

Reputation: 2021

In eclipse go to window->android virtual device manager-> edit the avd and increase the RAM size Or If you are using any other IDE just Increase the RAM size of Emulator

Upvotes: 0

Anukool
Anukool

Reputation: 5391

Try this -

run -> run configurations -> choose your run config -> Target ->Additional Emulator Command Line Options : -partition-size 512

Upvotes: 0

Related Questions