diff --git a/tools/platforms/AndroidPlatform.hx b/tools/platforms/AndroidPlatform.hx index 916694981..9bcad5a4b 100644 --- a/tools/platforms/AndroidPlatform.hx +++ b/tools/platforms/AndroidPlatform.hx @@ -150,7 +150,12 @@ class AndroidPlatform extends PlatformTarget if (hasX86) architectures.push(Architecture.X86); if (hasX64) architectures.push(Architecture.X64); - if (architectures.length == 0) architectures.push(Architecture.ARM64); + if (architectures.length == 0) + { + hasARM64 = true; + + architectures.push(Architecture.ARM64); + } for (architecture in architectures) {