From 1f0ddb34cbe6c80ebf7194e82116e7b24998c0e1 Mon Sep 17 00:00:00 2001 From: Mihai Alexandru <77043862+MAJigsaw77@users.noreply.github.com> Date: Wed, 17 Jan 2024 05:59:08 +0200 Subject: [PATCH] Just in case --- tools/platforms/AndroidPlatform.hx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/platforms/AndroidPlatform.hx b/tools/platforms/AndroidPlatform.hx index 010066f00..916694981 100644 --- a/tools/platforms/AndroidPlatform.hx +++ b/tools/platforms/AndroidPlatform.hx @@ -150,6 +150,8 @@ class AndroidPlatform extends PlatformTarget if (hasX86) architectures.push(Architecture.X86); if (hasX64) architectures.push(Architecture.X64); + if (architectures.length == 0) architectures.push(Architecture.ARM64); + for (architecture in architectures) { var haxeParams = [hxml, "-D", "android", "-D", "PLATFORM=android-21"];