Make the compilation of AndEngine and its extensions more easy
I created a repo manifest for compile AndEngine and its extensions.
The steps to follow are (in a linux system, but I think it works also in windows)
$ mkdir AndEngineRepo $ cd AndEngineRepo $ repo init -u https://github.com/gipi/AndEngine-repo.git $ repo sync $ for i in $(ls ); do echo > $i;cd $i;android update project -p .;cd ..; done $ cd AndEngineExamples $ ant debug
I'm interested to know how the developers of AndEngine manage to update all the repositories and recompile them.
I am already using it. Here is my description: http://www.andengine.org/forums/post44105.html?hilit=repo%20android%20sync%20init#p44105
The problem is that... nobody was interested in it :)
good to know, maybe adding the instructions in the README could be useful for new developers.