Skip to content

Commit

Permalink
Remove leftover armeabi stuff
Browse files Browse the repository at this point in the history
robovm-build was defined twice
  • Loading branch information
Frosty-J committed Apr 15, 2022
1 parent da24ad6 commit 834ee0e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ gwt-unitCache/
war/
gen/
gen-external-apklibs/
armeabi/
armeabi-v7a/
arm64-v8a/
linux32/
Expand All @@ -33,7 +32,6 @@ Release/
x64/
x86/
x86_64/
robovm-build/
ipch/
/dist

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ android {
// so they get packed with the APK.
task copyAndroidNatives {
doFirst {
file("libs/armeabi/").mkdirs()
file("libs/armeabi-v7a/").mkdirs()
file("libs/arm64-v8a/").mkdirs()
file("libs/x86_64/").mkdirs()
Expand All @@ -47,7 +46,6 @@ task 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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ www-test/
.gwt-tmp/

## Android Studio and Intellij and Android in general
/android/libs/armeabi/
/android/libs/armeabi-v7a/
/android/libs/arm64-v8a/
/android/libs/x86/
Expand Down

0 comments on commit 834ee0e

Please sign in to comment.