diff --git a/build.gradle b/build.gradle index 011be14..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 @@ -83,13 +82,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 +203,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 +212,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) {