@@ -83,13 +83,11 @@ dependencies {
8383 implementation " com.github.zafarkhaja:java-semver:0.10.0"
8484
8585 implementation " com.badlogicgames.gdx:gdx-backend-android:$gdxVersion "
86- natives " com.badlogicgames.gdx:gdx-platform:$gdxVersion :natives-armeabi"
8786 natives " com.badlogicgames.gdx:gdx-platform:$gdxVersion :natives-armeabi-v7a"
8887 natives " com.badlogicgames.gdx:gdx-platform:$gdxVersion :natives-arm64-v8a"
8988 natives " com.badlogicgames.gdx:gdx-platform:$gdxVersion :natives-x86"
9089 natives " com.badlogicgames.gdx:gdx-platform:$gdxVersion :natives-x86_64"
9190 implementation " com.badlogicgames.gdx:gdx-box2d:$gdxVersion "
92- natives " com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion :natives-armeabi"
9391 natives " com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion :natives-armeabi-v7a"
9492 natives " com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion :natives-arm64-v8a"
9593 natives " com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion :natives-x86"
@@ -206,7 +204,6 @@ android {
206204// so they get packed with the APK.
207205tasks. register(' copyAndroidNatives' ) {
208206 doFirst {
209- file(" libs/armeabi/" ). mkdirs()
210207 file(" libs/armeabi-v7a/" ). mkdirs()
211208 file(" libs/arm64-v8a/" ). mkdirs()
212209 file(" libs/x86_64/" ). mkdirs()
@@ -216,7 +213,6 @@ tasks.register('copyAndroidNatives') {
216213 def outputDir = null
217214 if (jar. name. endsWith(" natives-arm64-v8a.jar" )) outputDir = file(" libs/arm64-v8a" )
218215 if (jar. name. endsWith(" natives-armeabi-v7a.jar" )) outputDir = file(" libs/armeabi-v7a" )
219- if (jar. name. endsWith(" natives-armeabi.jar" )) outputDir = file(" libs/armeabi" )
220216 if (jar. name. endsWith(" natives-x86_64.jar" )) outputDir = file(" libs/x86_64" )
221217 if (jar. name. endsWith(" natives-x86.jar" )) outputDir = file(" libs/x86" )
222218 if (outputDir != null ) {
0 commit comments