Why can't I boot an AVD from Eclipse with 1024 MB of RAM?

前端 未结 6 506
时光说笑
时光说笑 2021-02-02 03:07

So, like a lot of people starting Android development with Eclipse, even with a fast machine, I notice that the emulator runs frustratingly slow.

I search SO for any ti

6条回答
  •  半阙折子戏
    2021-02-02 04:02

    From Galaxy s3 emulator:

    There is a common problem when setting up the AVD that you have to manually edit the config file to fix. File is located at C:\Documents and Settings\username\.android\avd\name_of_avd.avd\config.ini

    Change the memory settings from

    hw.ramSize=1024
    

    to

    hw.ramSize=1024MB
    

    (Do not enable word wrap in notepad).

    Save the file and reopen the avd. This worked for me.

提交回复
热议问题