user1628175
user1628175

Reputation: 303

emulator won't start, with segmentation fault error

guys. I am new to Android app development and I encountered some issue when I tried to start the emulator. I tried to start the emulator from the Android Virtual Device Manager, and nothing happened. There's no pop-up, no error message. I tried it from the command line and it showed a one-line output, which is "Segmentation fault". I created different virtual devices but they all failed to start with the same error output.
My OS is Ubuntu 10.04 32-bit, and the Android SDK is r20.0.3-linux. Thanks in advance.

Upvotes: 4

Views: 4409

Answers (4)

rosh-dev851
rosh-dev851

Reputation: 564

following edit in the .android/avd/{avd name}.ini file fix this problem for me.

hw.gpu.mode=auto
hw.gpu.enabled = no

Upvotes: 0

Marco C.
Marco C.

Reputation: 1412

try this:

mv tools/lib/libOpenglRender.so tools/lib/libOpenglRender.so.xxx

(taken from Android emulator segmentation fault)

Upvotes: 0

Satheesh
Satheesh

Reputation: 656

I also seen the same kind of prob. Normally i guess emulator depends on RAM, as it interacts faster. So try swapping your RAM.

For my friend emulator worked after changing RAM.

Upvotes: 0

Dadaista
Dadaista

Reputation: 11

Try with: emulator -gpu on @youremulatorname

Upvotes: 1

Related Questions