Skip to content

Instantly share code, notes, and snippets.

@mariusk
Created April 22, 2014 10:48
Show Gist options
  • Save mariusk/11173840 to your computer and use it in GitHub Desktop.
Save mariusk/11173840 to your computer and use it in GitHub Desktop.
project(":android") {
apply plugin: "android"
configurations { natives }
dependencies {
compile project(":core")
compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
//compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
compile files("libs/square-otto-1.3.2.jar")
compile files("libs/android-support-v4.jar")
//compile files("libs/gdx-freetype.jar")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment