diff --git a/src/Xamarin.Android.Build.Tasks/Utilities/TypeMapHelper.cs b/src/Xamarin.Android.Build.Tasks/Utilities/TypeMapHelper.cs index 06e49b2e98e..5da1f7722df 100644 --- a/src/Xamarin.Android.Build.Tasks/Utilities/TypeMapHelper.cs +++ b/src/Xamarin.Android.Build.Tasks/Utilities/TypeMapHelper.cs @@ -23,7 +23,7 @@ public static ulong HashJavaName (string name, bool is64Bit) static ulong HashBytes (byte[] bytes, bool is64Bit) { if (is64Bit) { - return XxHash64.HashToUInt64 (bytes); + return XxHash3.HashToUInt64 (bytes); } return (ulong)XxHash32.HashToUInt32 (bytes);