v3.2.2: updated libGDX to 1.13.6-SNAPSHOT

This commit is contained in:
Evan Debenham
2025-08-17 12:17:19 -04:00
parent 45c8eb3e70
commit 00c6c6a8ef
4 changed files with 14 additions and 26 deletions

View File

@@ -59,19 +59,16 @@ configurations { natives }
dependencies {
implementation project(':core')
// We are using the natives from 1.11.0 to maintain compatibility with Android 4.0-4.3 for now
// The 1.12.0+ natives are compiled with a version of the NDK which drops 4.3- support
// YES, THIS IS VERY DANGEROUS! 1.11.0 natives may only incidentally work with later libGDX versions
implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-platform:1.11.0:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-platform:1.11.0:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-platform:1.11.0:natives-x86"
natives "com.badlogicgames.gdx:gdx-platform:1.11.0:natives-x86_64"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
natives "com.badlogicgames.gdx:gdx-freetype-platform:1.11.0:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-freetype-platform:1.11.0:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-freetype-platform:1.11.0:natives-x86"
natives "com.badlogicgames.gdx:gdx-freetype-platform:1.11.0:natives-x86_64"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-arm64-v8a"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86_64"
implementation "com.badlogicgames.gdx-controllers:gdx-controllers-android:$gdxControllersVersion"
}