Files
shattered-pixel-dungeon-web…/SPD-classes/build.gradle
Evan Debenham b985ed3bf5 v0.7.5b: first major portion of rewriting text rendering
some rough edges still need smoothing out
2019-10-14 20:45:44 -04:00

23 lines
710 B
Groovy

//FIXME currently an android library while small amounts of android-specific code remain
apply plugin: 'com.android.library'
android {
compileSdkVersion appAndroidCompileSDK
defaultConfig {
//noinspection MinSdkTooLow
minSdkVersion appAndroidMinSDK
}
}
configurations { natives }
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"
api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
}