diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-16 13:52:29 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-16 13:54:51 +0100 |
commit | 9e820cdf200576cefaabc2021a800771cd6700a7 (patch) | |
tree | b49c350fa2c0aaaca68020d52b8e3aac89af1b9f /platform/android/export/export.cpp | |
parent | 58d7619a79362cfb1b83b6fdba3c7b3609a92f07 (diff) |
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.
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 18b985bcf5..405fe0b294 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1170,7 +1170,7 @@ public: Vector<String> abis = get_abis(); for (int i = 0; i < abis.size(); ++i) { String abi = abis[i]; - bool is_default = (abi == "armeabi-v7a"); + bool is_default = (abi == "armeabi-v7a" || abi == "arm64-v8a"); r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "architectures/" + abi), is_default)); } |