I have a problem while running the examples from andengine. The error I'm getting is at this line:

System.loadLibrary( "andenginephysicsbox2dextension" );

Couldn't load andenginephysics2dextension. Find library returned null. I noticed other people kept having this problem but no solution was proposed.

Any help is welcomed! Thanks.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

looks like you missed to copy the native libraries. AndEngine is now hosted on github and it is in perfectly active development! ( https://github.com/nicolasgramlich/AndEngine ) more info on what changed in the new GLES2 version here: http://www.andengine.org/forums/announces/andengine-gles2-pre-release-on-december-23rd-t6097.html#p26851

Using AndEngine as a library project is recommended and this will automatically 'copy' the native libraries to your project.

Best Regards, Nicolas

link|improve this answer
Thanks a lot. I just started using the engine and I love it. The only thing I couldn't find and I thought it would be helpfull was to change sprite texture(a setter for texture ex. change a box texture when I click it; but again maybe I didn't dig enough yet). If you have any suggestions regarding this, I would be thankfull. – Fofole Jan 6 at 14:44
The answer is using Tiled Sprites. – Fofole Jan 19 at 7:11
feedback

The error you are getting is because you have to build the Box2D extension yourself. I think there is tutorial how to do it. However i stoped there and downloaded the demos from market. Then eventually switched to libGDX.

link|improve this answer
is libgdx better than andengine ? – Fofole Jan 5 at 9:55
It is different, can't say it is better. It forces you to go a little bit under the hood to understand things. That is good i think. Also i find the documentation for libGDX much better than for AndEngine. LibGDX seems live project and AndEngine has no commits for over 3 months since Nicholas works for Zynga. Check them both and decide which fits you best. I personally tried Cocos2D for android, AndEngine and now i use libGDX. – Ludevik Jan 5 at 10:01
AndEngine has moved to github this is why it looks dead in the old repository. github.com/nicolasgramlich/AndEngine – Nicolas Gramlich Jan 5 at 16:07
oh, didn't noticed that, sry for bad info. Maybe link to github from andengine.org would help ;) or at least some info at code.google.com/p/andengine – Ludevik Jan 5 at 17:03
feedback

Check out this tutorial: http://www.youtube.com/playlist?list=PL6131C7A9DDCF959A

The new way of using andEngine is to include the git repos as libraries (without making any jars)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.