From 380f64cb6ef96d0d548da44c0e23493035b6fb3b Mon Sep 17 00:00:00 2001 From: Mihai Alexandru <77043862+MAJigsaw77@users.noreply.github.com> Date: Wed, 17 Jan 2024 06:17:00 +0200 Subject: [PATCH] Forgot this --- tools/platforms/AndroidPlatform.hx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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) {