ERROR: 32-bit Linux Android emulator binaries are DEPRECATED

前端 未结 9 1030
轻奢々
轻奢々 2021-02-14 09:15

I installed the latest version of the ADT Bundle 32 bit on my ubuntu 14.04 32 bit. I created an AVD, but it doesn\'t launch. When I press the start button it shows this message:

相关标签:
9条回答
  • 2021-02-14 09:51

    For Android Studio:

    Run > Edit Configurations > Android > Android Application > app > Emulator tab

    Enable the checkbox next to Additional command line options:

    Enter -force-32bit

    0 讨论(0)
  • 2021-02-14 09:53

    create a shell script :

    #!/bin/bash
    #
    #   set export ANDROID_EMULATOR_FORCE_32BIT=true
    
    export ANDROID_EMULATOR_FORCE_32BIT=true
    /opt/adt-bundle-linux-x86-20140702/eclipse/eclipse
    

    change the shell script executable and run it to active eclipse
    "/opt/adt-bundle-linux-x86-20140702/eclipse/eclipse" is the path of eclipse

    0 讨论(0)
  • 2021-02-14 09:54

    I had same problem and now I solved,I have Ubuntu 15.10 And my solution was:

    1. Open terminal
    2. Locate path directory Android-studio at terminal
    3. I wrote export ANDROID_EMULATOR_FORCE_32BIT=true, keyboard key enter
    4. And execute the ./studio.sh locate in folder bin of Android-studio
    0 讨论(0)
提交回复
热议问题