A g8 template to get up and running with Scala and libgdx using sbt 0.11.
To use this template, you will need to install g8 first. Consult g8's readme for more information.
Then, in your favorite shell, type the command:
$ g8 ajhager/libgdx-sbt-project
After filling in some information about your project, you can start placing your game's source files and assets in common/src/main/scala and common/src/main/resources, respectively.
Update to the lastest libgdx nightlies (You will need to do this at least once):
$ sbt update-gdx
Run the desktop project:
$ sbt "project desktop" run
Run the android project on a device:
$ sbt "project android" android:package-debug android:start-device
Visit android-plugin for a more in-depth guide to android configuration and usage.
JamilH: sbt 0.11 support