15 lines
569 B
Groovy
15 lines
569 B
Groovy
apply plugin: 'java-library'
|
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
|
|
|
dependencies {
|
|
//TODO migrate this to implementation from api
|
|
//in order to do this I have to remove 100% of libGDX API access from core
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
|
|
|
//noinspection GradleDependency , later JSON versions cause crashes on old versions of android
|
|
implementation "org.json:json:20170516"
|
|
}
|