Closed
Description
Context: #946
Context: dotnet/android-libraries#547
While updating AndroidX to XA 17.2, we found that the previous Kotlin issues around unsigned types have been fixed. However, there are some new issues that have been exposed:
#### Type Changed: Kotlin.UIntArray
Removed methods:
public bool Contains (uint element);
public static bool Contains (int[] arg0, int element);
Added methods:
public bool Contains (int element);
public static bool Contains (int[] arg0, uint element);
This regression should be investigated. Perhaps it is related to method overloads?