You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like Mono.Android.dll, we consider the Java.Interop.dll public API of each target framework to be an immutable contract. For example, this prevents an issue where a user on .NET 8.0.300 uses a method that isn't available to their coworker or CI on .NET 8.0.100.
Thus we should enable PublicApiAnalyzer on Java.Interop.dll to ensure we do not break our contract.
Context: dotnet/android#8171
Like
Mono.Android.dll, we consider theJava.Interop.dllpublic API of each target framework to be an immutable contract. For example, this prevents an issue where a user on.NET 8.0.300uses a method that isn't available to their coworker or CI on.NET 8.0.100.Thus we should enable PublicApiAnalyzer on
Java.Interop.dllto ensure we do not break our contract.