The following project is a Java implementation of a sidescrolling game using libgdx
Much of the inspiration for the development of this game came from the Lua-developed single player Hawkthorne game. However, this game aims to have a different scope of simple jumping puzzles and racing to a specific goal.
to package the application for android:
mvn package -Pandroid
Installation instructions (Linux) ################################# install git
sudo yum install git
install maven
cd /usr/local/
wget http://apache.petsads.us/maven/maven-3/3.1.1/binaries/apache-maven-3.1.1-bin.tar.gz
tar xvf apache-maven-3.1.1-bin.tar.gz
add the following to your ~/.bashrc
export M2_HOME=/usr/local/apache-maven-3.1.1
export M2=$M2_HOME/bin
export PATH=$M2:$PATH
install tools.jar(as well as the rest of java) if it's not in your 'jdk'
sudo yum install java-1.6.0-openjdk-devel.x86_64
if you want to use a port or address other than the defaults set the following environment variables:
HAWK_PORT
(default=12345)
HAWK_ADDRESS
(default=localhost)