Browse Source

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 9e820cdf200576cefaabc2021a800771cd6700a7)
Rémi Verschelde 6 years ago
parent
commit
e898b0a3a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      platform/android/export/export.cpp

+ 1 - 1
platform/android/export/export.cpp

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