Failed to start Android emulator

This is the message I get on the console. I tried to run it many times, this is the same message. Thank.

[2014-02-07 15:44:08 - david] Performing t.t.Splash activity launch
[2014-02-07 15:44:08 - david] Automatic Target Mode: using existing emulator 'emulator-5554' running compatible AVD 'slayer'
[2014-02-07 15:44:18 - david] Uploading david.apk onto device 'emulator-5554'
[2014-02-07 15:44:18 - david] Failed to install david.apk on device 'emulator-5554': Read-only file system
[2014-02-07 15:44:18 - david] com.android.ddmlib.SyncException: Read-only file system
[2014-02-07 15:44:18 - david] Launch canceled!
+3
source share
3 answers

Change the connection time to ADB, I think this is causing problems.

If you use eclipse, you can go to Window -> Preferences, and then to DDMS for Android.

Window → Settings → Android → DDMS → ADB Connection Timeout (ms)

By default, this 500 ms changes it to 10,000 ms.

For more information, go here

0
source

Got this from the Android forum where I asked the same question. Hope this helps someone else.

In the terminal emulator by phone:

mount -o rw, remount -t yaffs2/dev/block/mtdblock3/system

adb push

0

The same thing happened to me because I already had an emulator. Make sure you don't have an emulator yet.

0
source

All Articles