Skip to content

Commit 4cc2c10

Browse files
davidrogers-unitychkuang-g
authored andcommitted
Unity now supports x86_64 for Android apps on Chrome OS. Add it to the ABI lists
1 parent 41072ec commit 4cc2c10

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source/AndroidResolver/src/AndroidAbis.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private class PropertyConfiguration {
3434
public enum Mode {
3535
FatOnly, // Only supports fat (armeabi-v7a & x86) builds.
3636
OneOfArmX86Fat, // Supports one of armeabi-v7a, x86 or fat builds.
37-
AnyOfArmX86Arm64, // Supports any combination of armeabi-v7a, x86 or arm64 builds.
37+
AnyOfArmX86Arm64, // Supports any combination of armeabi-v7a, x86, x86_64 or arm64 builds.
3838
}
3939

4040
/// <summary>
@@ -74,7 +74,8 @@ public PropertyConfiguration() {
7474
foreach (var abi in new Dictionary<string, string>() {
7575
{"armeabi-v7a", "ARMv7"},
7676
{"arm64-v8a", "ARM64"},
77-
{"x86", "X86"}
77+
{"x86", "X86"},
78+
{"x86_64", "X86_64"}
7879
}) {
7980
try {
8081
EnumValueStringToULong(EnumType, abi.Value);

0 commit comments

Comments
 (0)