Advertisement
Guest User

Untitled

a guest
May 5th, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.41 KB | None | 0 0
  1. project(":android") {
  2.    
  3.     apply plugin: 'android'
  4.  
  5.     configurations { natives }
  6.  
  7.     dependencies {
  8.         compile project(":core")
  9.         compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
  10.         natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi"
  11.         natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
  12.         natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
  13.         compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
  14.         natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi"
  15.         natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
  16.         natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
  17.         compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
  18.         compile "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion"
  19.         compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
  20.         natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi"
  21.         natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
  22.         natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
  23.     compile 'com.facebook.android:facebook-android-sdk:4.0.1'
  24.     compile 'com.android.support:support-v4:[21,22)'
  25.     compile 'com.parse.bolts:bolts-android:1.1.4'
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement