Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exporting APK from eclipse (ADT) silently crashes

Every time I try to export an APK from Eclipse (tried Juno and Indigo) on Mac, eclipse crashes after a few seconds

This used to work fine on my current setup.

Running the app straight (debug mode) on my phone works fine.

The error from the console is:

Invalid memory access of location 0x10073f113 rip=0x101f656f7
Bus error: 10

I'm using Mac OS X 10.7.4 on a ~2010 MacBook Pro, with the following java:

java version "1.6.0_33"
Java(TM) SE Runtime Environment (build 1.6.0_33-b03-424-11M3720)
Java HotSpot(TM) 64-Bit Server VM (build 20.8-b03-424, mixed mode)

I'm using ADT 20.

I've tried reinstalling Eclipse and the Android SDK, and re-downloading ADT.

The Eclipse error view doesn't show anything

Any ideas of different methods I can try, or other ways to investigate what's going wrong?

Cheers

Update: For anyone coming along post-2014, you should be using Android Studio, which doesn't have this problem.

like image 741
whalabi Avatar asked Aug 01 '12 03:08

whalabi


3 Answers

Disable Project/Build Automatically when you are exporting

I think is a problem of Eclipse unable to detect the Android command is still working or something similar.

Of course there is ever the option of APK generation using Ant outside Eclipse you can generate an Ant build.xml from your Eclipse project more info in official Android docs

like image 86
jmarranz Avatar answered Nov 10 '22 18:11

jmarranz


Disable Project->Build Automatically. I've noted that this works for me.

like image 40
wangzhengyi Avatar answered Nov 10 '22 18:11

wangzhengyi


Disable project/build Automatically before export the apk.

enter image description here

like image 26
Luna Kong Avatar answered Nov 10 '22 16:11

Luna Kong