build.gradle 550 B

123456789101112131415161718192021
  1. [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
  2. eclipse.project.name = appName + '-core'
  3. dependencies {
  4. api "com.badlogicgames.gdx:gdx:$gdxVersion"
  5. api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
  6. api "com.badlogicgames.gdx:gdx-bullet:$gdxVersion"
  7. /*
  8. implementation ('io.socket:socket.io-client:2.0.0') {
  9. // excluding org.json which is provided by Android
  10. exclude group: 'org.json', module: 'json'
  11. }
  12. */
  13. compile "com.esotericsoftware:kryonet:2.22.0-RC1"
  14. implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
  15. }