Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ERROR: 32-bit Linux Android emulator binaries are DEPRECATED

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:

Starting emulator for AVD 'NexusOne' ERROR: 32-bit Linux Android emulator binaries are DEPRECATED, to use them you will have to do at least one of the following: - Use the '-force-32bit' option when invoking 'emulator'. - Set ANDROID_EMULATOR_FORCE_32BIT to 'true' in your environment. Either one will allow you to use the 32-bit binaries, but please be aware that these will disappear in a future Android SDK release. Consider moving to a 64-bit Linux system before that happens.

I tried to fix it by setting export ANDROID_EMULATOR_FORCE_32BIT=true to gedit .profile file and to gedit .bashrc file. Nothing changed.

Thank you for trying to help me!

like image 803
user242918 Avatar asked Oct 21 '14 19:10

user242918


3 Answers

i have one great solution. you can start it with eclipse or netbeans. try :

  1. In Eclipse, click your Android project folder and then select Run > Run Configurations...

  2. In the left panel of the Run Configurations dialog, select your Android project run configuration or create a new configuration.

  3. Click the Target tab.

In the Additional Emulator Command Line Options field, enter:

-force-32bit

Run your Android project using this run configuration.

in netbeans you : 1. wher you choose debuger chose Customize...

  1. in Emulator options write -force-32bit
  2. click ok. and run application
like image 78
jakob Avatar answered Nov 03 '22 16:11

jakob


I solve this problem with the following:

export ANDROID_EMULATOR_FORCE_32BIT=true

Then I start the emulator from the command line. It works!

Hope it's helpful to you.

like image 34
shuofei Avatar answered Nov 03 '22 16:11

shuofei


I did the following

go to the run configuration >target tab> scroll down to the last> Additional emulator command line options>-force-32bit

like image 5
Ameen Maheen Avatar answered Nov 03 '22 16:11

Ameen Maheen