From fcb10a1200a82ecbeedb7dc251f558ab8fedca8a Mon Sep 17 00:00:00 2001 From: BenjaminAmos <24301287+BenjaminAmos@users.noreply.github.com> Date: Sun, 3 Dec 2023 18:03:35 +0000 Subject: [PATCH 1/2] build: remove Android armeabi architecture support (#33) libGDX 1.12.1 no longer supports armeabi on Android. --- build.gradle | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build.gradle b/build.gradle index 011be14..7058629 100644 --- a/build.gradle +++ b/build.gradle @@ -83,13 +83,11 @@ dependencies { implementation "com.github.zafarkhaja:java-semver:0.10.0" implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion" - natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion" - natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a" natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86" @@ -206,7 +204,6 @@ android { // so they get packed with the APK. tasks.register('copyAndroidNatives') { doFirst { - file("libs/armeabi/").mkdirs() file("libs/armeabi-v7a/").mkdirs() file("libs/arm64-v8a/").mkdirs() file("libs/x86_64/").mkdirs() @@ -216,7 +213,6 @@ tasks.register('copyAndroidNatives') { def outputDir = null if (jar.name.endsWith("natives-arm64-v8a.jar")) outputDir = file("libs/arm64-v8a") if (jar.name.endsWith("natives-armeabi-v7a.jar")) outputDir = file("libs/armeabi-v7a") - if (jar.name.endsWith("natives-armeabi.jar")) outputDir = file("libs/armeabi") if (jar.name.endsWith("natives-x86_64.jar")) outputDir = file("libs/x86_64") if (jar.name.endsWith("natives-x86.jar")) outputDir = file("libs/x86") if (outputDir != null) { From 294da531cce02331d847691725f201163eafbd36 Mon Sep 17 00:00:00 2001 From: Cervator Date: Wed, 25 Dec 2024 23:24:21 -0500 Subject: [PATCH 2/2] build: updated Artifactory URL --- build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 7058629..5a169f4 100644 --- a/build.gradle +++ b/build.gradle @@ -40,8 +40,7 @@ repositories { // Terasology Artifactory for any shared libs maven { - url "http://artifactory.terasology.org/artifactory/virtual-repo-live" - allowInsecureProtocol true // TODO: Review this when HTTPS finally supported. + url "https://artifactory.terasology.io/artifactory/virtual-repo-live" } // everit-org JSON schema dependency