2019-10-11 02:28:37 +00:00
|
|
|
apply plugin: 'java-library'
|
2016-08-13 06:11:29 +00:00
|
|
|
|
2019-10-11 02:28:37 +00:00
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
2019-10-26 17:21:05 +00:00
|
|
|
sourceCompatibility = targetCompatibility = appJavaCompatibility
|
2019-07-30 20:50:40 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
//TODO migrate this to implementation from api
|
|
|
|
//in order to do this I have to remove 100% of libGDX API access from core
|
2019-08-01 19:35:27 +00:00
|
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
2022-02-18 17:08:27 +00:00
|
|
|
api "com.badlogicgames.gdx-controllers:gdx-controllers-core:$gdxControllersVersion"
|
2019-10-11 02:20:23 +00:00
|
|
|
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
2022-03-03 21:39:20 +00:00
|
|
|
|
|
|
|
//noinspection GradleDependency , later JSON versions cause crashes on old versions of android
|
|
|
|
implementation "org.json:json:20170516"
|
2019-10-11 02:20:23 +00:00
|
|
|
}
|