14 lines
531 B
Groovy
14 lines
531 B
Groovy
apply plugin: 'java-library'
|
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
java.sourceCompatibility = java.targetCompatibility = appJavaCompatibility
|
|
|
|
dependencies {
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
api "com.badlogicgames.gdx-controllers:gdx-controllers-core:$gdxControllersVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
|
|
|
//noinspection GradleDependency , later JSON versions cause crashes on old versions of android
|
|
implementation "org.json:json:20170516"
|
|
}
|