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:
parent
0aa350306b
commit
917d027941
|
@ -1122,7 +1122,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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue