Android build architectures

Hi, in the projucer settings for Android it says to leave the architectures field empty to build all Android architectures, but this seems to only build32-bit, i.e. doesn’t build x86_64, arm64, mips64.

Do these need to be entered by hand? I can’t seem to see an option elsewhere to enable the 64-bit builds.

thx

No, but it will only enable those architectures supported by your minimum SDK target. If you are using SDK target 10 (JUCE’s default) then it will only build 32-bit targets. This is an Android Studio limitation and not something that JUCE can fix. You probably just want to target a newer SDK.

ah, got ya. thanks