Skip to content

Commit

Permalink
Update AndroidPlatform.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
MAJigsaw77 authored Jan 16, 2024
1 parent a488988 commit 8648b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/platforms/AndroidPlatform.hx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class AndroidPlatform extends PlatformTarget
var architectures = [];

if (hasARMV5) architectures.push(Architecture.ARMV5);
if (hasARMV7 || (!hasARMV5 && !hasX86)) architectures.push(Architecture.ARMV7);
if (hasARMV7) architectures.push(Architecture.ARMV7);
if (hasARM64) architectures.push(Architecture.ARM64);
if (hasX86) architectures.push(Architecture.X86);
if (hasX64) architectures.push(Architecture.X64);
Expand Down

0 comments on commit 8648b05

Please sign in to comment.