From 8648b0599103c9cebb5a9546ca9e1af503f729eb Mon Sep 17 00:00:00 2001 From: Mihai Alexandru <77043862+MAJigsaw77@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:15:06 +0200 Subject: [PATCH] Update AndroidPlatform.hx --- tools/platforms/AndroidPlatform.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/platforms/AndroidPlatform.hx b/tools/platforms/AndroidPlatform.hx index 9372437ee..010066f00 100644 --- a/tools/platforms/AndroidPlatform.hx +++ b/tools/platforms/AndroidPlatform.hx @@ -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);