There was an error while loading. Please reload this page.
We are using a customized version of the Android build script based on Using Ant to build your libgdx project.
Navigate to the android directory.
android
cd android
Create your local.properties for the android project.
local.properties
android update project --path .
Build a debug APK.
ant debug
Install the APK onto a connected Android device or emulator and launch the main activity.
adb install -r build/agenthon-debug.apk adb shell am start -n com.quixotix.agenthon/.MainActivity
Navigate to the desktop directory.
desktop
cd desktop
Run ant dist to compile the project and create a jar file including all dependencies. The jar file will be created in bin.
ant dist
bin
You can then run the application with ant run or java -jar bin/agenthon.jar.
ant run
java -jar bin/agenthon.jar