1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Android: Enable arm64-v8a export by default

From August 1, 2019, Google Play requires that all new apps and app updates
include 64-bit versions, so we enable ARM64 by default.

IINM support for x86 and x86_64 is still be optional, so not enabling them
out of the box.

Part of #25030.

(cherry picked from commit 9e820cdf20)
This commit is contained in:
Rémi Verschelde
2019-01-16 13:52:29 +01:00
parent b768381998
commit e898b0a3a8

View File

@@ -1877,7 +1877,7 @@ EditorExportPlatformAndroid::EditorExportPlatformAndroid() {
immersive = true; immersive = true;
export_arm = true; export_arm = true;
export_arm64 = false; export_arm64 = true;
export_x86 = false; export_x86 = false;
export_x86_64 = false; export_x86_64 = false;