2019-08-01 19:35:27 +00:00
|
|
|
//FIXME currently an android library while small amounts of android-specific code remain
|
2016-08-13 06:11:29 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2019-07-14 19:50:20 +00:00
|
|
|
compileSdkVersion appAndroidCompileSDK
|
2016-09-16 00:03:14 +00:00
|
|
|
|
2018-08-21 02:00:35 +00:00
|
|
|
defaultConfig {
|
|
|
|
//noinspection MinSdkTooLow
|
2019-07-14 19:50:20 +00:00
|
|
|
minSdkVersion appAndroidMinSDK
|
2018-08-21 02:00:35 +00:00
|
|
|
}
|
2018-08-04 00:56:40 +00:00
|
|
|
}
|
2019-07-30 20:50:40 +00:00
|
|
|
|
|
|
|
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
|
2019-08-01 19:35:27 +00:00
|
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
2019-07-30 20:50:40 +00:00
|
|
|
api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
|
|
|
|
}
|