diff --git a/build-tools/automation/azure-pipelines-internal.yaml b/build-tools/automation/azure-pipelines-internal.yaml index 256e9e7f57a..2ae883f754d 100644 --- a/build-tools/automation/azure-pipelines-internal.yaml +++ b/build-tools/automation/azure-pipelines-internal.yaml @@ -943,6 +943,8 @@ extends: - pwsh: ./build.ps1 --target=dotnet-pack --configuration="$(XA.Build.Configuration)" --nugetsource="$(Build.StagingDirectory)\android-packs" --verbosity=diagnostic displayName: Pack .NET Maui workingDirectory: $(Build.SourcesDirectory)/maui + env: + NoWarn: CS0618 - task: DotNetCoreCLI@2 displayName: Install MAUI workload packs diff --git a/build-tools/automation/azure-pipelines-public.yaml b/build-tools/automation/azure-pipelines-public.yaml index 52c6c79ea1f..8e5e5d08151 100644 --- a/build-tools/automation/azure-pipelines-public.yaml +++ b/build-tools/automation/azure-pipelines-public.yaml @@ -585,6 +585,8 @@ stages: - pwsh: ./build.ps1 --target=dotnet-pack --configuration="$(XA.Build.Configuration)" --nugetsource="$(Build.StagingDirectory)\android-packs" --verbosity=diagnostic displayName: Pack .NET Maui workingDirectory: $(Build.SourcesDirectory)/maui + env: + NoWarn: CS0618 - task: DotNetCoreCLI@2 displayName: Install MAUI workload packs diff --git a/build-tools/automation/azure-pipelines.yaml b/build-tools/automation/azure-pipelines.yaml index e2c14fc0b03..4e62eeca2c4 100644 --- a/build-tools/automation/azure-pipelines.yaml +++ b/build-tools/automation/azure-pipelines.yaml @@ -203,6 +203,8 @@ extends: - pwsh: ./build.ps1 --target=dotnet-pack --configuration="$(XA.Build.Configuration)" --nugetsource="$(Build.StagingDirectory)\android-packs" --verbosity=diagnostic displayName: Pack .NET Maui workingDirectory: $(Build.SourcesDirectory)/maui + env: + NoWarn: CS0618 - task: DotNetCoreCLI@2 displayName: Install MAUI workload packs diff --git a/external/Java.Interop/tests/generator-Tests/Unit-Tests/CodeGeneratorTests.cs b/external/Java.Interop/tests/generator-Tests/Unit-Tests/CodeGeneratorTests.cs index 3058ada62a0..f78a7856c64 100644 --- a/external/Java.Interop/tests/generator-Tests/Unit-Tests/CodeGeneratorTests.cs +++ b/external/Java.Interop/tests/generator-Tests/Unit-Tests/CodeGeneratorTests.cs @@ -804,13 +804,16 @@ public void ObsoletedOSPlatformAttributeUnneededSupport () generator.WriteType (iface, string.Empty, new GenerationInfo ("", "", "MyAssembly")); generator.Context.ContextTypes.Pop (); - // These should use [Obsolete] because they have always been obsolete in all currently supported versions (21+) + // These should use [Obsolete] because they have always been obsolete in all currently supported versions (24+) Assert.True (writer.ToString ().Contains ("[global::System.Obsolete (@\"This is a field deprecated since 0!\")]"), writer.ToString ()); Assert.True (writer.ToString ().Contains ("[global::System.Obsolete (@\"This is a constructor deprecated since empty string!\")]"), writer.ToString ()); + // getCount/setCount were deprecated-since 22, which is below MINIMUM_API_LEVEL (24), so they + // should use [Obsolete] rather than [ObsoletedOSPlatform] since they have always been obsolete. + Assert.True (writer.ToString ().Contains ("[global::System.Obsolete (@\"deprecated\")]"), writer.ToString ()); + // This should not have a message because the default "deprecated" message isn't useful Assert.True (writer.ToString ().Contains ("[global::System.Runtime.Versioning.ObsoletedOSPlatform (\"android25.0\")]"), writer.ToString ()); - Assert.True (writer.ToString ().Contains ("[global::System.Runtime.Versioning.ObsoletedOSPlatform (\"android22.0\")]"), writer.ToString ()); // This should use [Obsolete] because the 'deprecated-since' attribute could not be parsed Assert.True (writer.ToString ().Contains ("[global::System.Obsolete (@\"This method has an invalid deprecated-since!\")]"), writer.ToString ()); @@ -1450,6 +1453,58 @@ public void SupportedOSPlatformConstFields () StringAssert.Contains ("[global::System.Runtime.Versioning.SupportedOSPlatformAttribute (\"android30.0\")]", builder.ToString (), "Should contain SupportedOSPlatform!"); } + [Test] + // CodeGenerationOptions.MinimumApiLevel defaults to 24 (matches $(AndroidMinimumDotNetApiLevel) + // in Configuration.props), so there's no sense writing [SupportedOSPlatform] for an API + // available at or below that floor: it's available in every version we support. Only API + // levels above the floor need it. + [TestCase (22, false)] + [TestCase (23, false)] + [TestCase (24, false)] + [TestCase (25, true)] + public void SupportedOSPlatformOmittedAtOrBelowMinimumApiLevel (int apiLevel, bool expectAttribute) + { + var klass = SupportTypeBuilder.CreateClass ("java.code.MyClass", options); + klass.ApiAvailableSince = new AndroidSdkVersion (apiLevel); + + generator.Context.ContextTypes.Push (klass); + generator.WriteType (klass, string.Empty, new GenerationInfo ("", "", "MyAssembly")); + generator.Context.ContextTypes.Pop (); + + var attribute = $"[global::System.Runtime.Versioning.SupportedOSPlatformAttribute (\"android{apiLevel}.0\")]"; + + if (expectAttribute) + StringAssert.Contains (attribute, builder.ToString (), $"Should contain SupportedOSPlatform for android{apiLevel}!"); + else + StringAssert.DoesNotContain (attribute, builder.ToString (), $"Should NOT contain SupportedOSPlatform for android{apiLevel}!"); + } + + [Test] + // Confirms MinimumApiLevel is actually wired through, not just defaulted: overriding it to a + // non-default value moves the floor below which [SupportedOSPlatform] is omitted. + [TestCase (21, 22, true)] + [TestCase (21, 21, false)] + [TestCase (30, 25, false)] + [TestCase (30, 31, true)] + public void SupportedOSPlatformRespectsMinimumApiLevelOverride (int minimumApiLevel, int apiLevel, bool expectAttribute) + { + options.MinimumApiLevel = minimumApiLevel; + + var klass = SupportTypeBuilder.CreateClass ("java.code.MyClass", options); + klass.ApiAvailableSince = new AndroidSdkVersion (apiLevel); + + generator.Context.ContextTypes.Push (klass); + generator.WriteType (klass, string.Empty, new GenerationInfo ("", "", "MyAssembly")); + generator.Context.ContextTypes.Pop (); + + var attribute = $"[global::System.Runtime.Versioning.SupportedOSPlatformAttribute (\"android{apiLevel}.0\")]"; + + if (expectAttribute) + StringAssert.Contains (attribute, builder.ToString (), $"Should contain SupportedOSPlatform for android{apiLevel} with MinimumApiLevel={minimumApiLevel}!"); + else + StringAssert.DoesNotContain (attribute, builder.ToString (), $"Should NOT contain SupportedOSPlatform for android{apiLevel} with MinimumApiLevel={minimumApiLevel}!"); + } + [Test] public void UnsupportedOSPlatform () { diff --git a/external/Java.Interop/tools/generator/CodeGenerationOptions.cs b/external/Java.Interop/tools/generator/CodeGenerationOptions.cs index baabc393364..e37f841b9a5 100644 --- a/external/Java.Interop/tools/generator/CodeGenerationOptions.cs +++ b/external/Java.Interop/tools/generator/CodeGenerationOptions.cs @@ -58,6 +58,7 @@ public SymbolTable SymbolTable { public string AssemblyName { get; set; } public bool UseShortFileNames { get; set; } public int ProductVersion { get; set; } + public int MinimumApiLevel { get; set; } = 24; public bool SupportInterfaceConstants { get; set; } public bool SupportDefaultInterfaceMethods { get; set; } public bool SupportNestedInterfaceTypes { get; set; } diff --git a/external/Java.Interop/tools/generator/CodeGenerator.cs b/external/Java.Interop/tools/generator/CodeGenerator.cs index d21c4c163b6..5f29da7a3a9 100644 --- a/external/Java.Interop/tools/generator/CodeGenerator.cs +++ b/external/Java.Interop/tools/generator/CodeGenerator.cs @@ -77,6 +77,7 @@ static void Run (CodeGeneratorOptions options, DirectoryAssemblyResolver resolve IgnoreNonPublicType = true, UseShortFileNames = options.UseShortFileNames, ProductVersion = options.ProductVersion, + MinimumApiLevel = options.MinimumApiLevel, SupportInterfaceConstants = options.SupportInterfaceConstants, SupportDefaultInterfaceMethods = options.SupportDefaultInterfaceMethods, SupportNestedInterfaceTypes = options.SupportNestedInterfaceTypes, diff --git a/external/Java.Interop/tools/generator/CodeGeneratorOptions.cs b/external/Java.Interop/tools/generator/CodeGeneratorOptions.cs index b6a564df0c7..ffb3ab3669f 100644 --- a/external/Java.Interop/tools/generator/CodeGeneratorOptions.cs +++ b/external/Java.Interop/tools/generator/CodeGeneratorOptions.cs @@ -47,6 +47,7 @@ public CodeGeneratorOptions () public bool PreserveEnums {get; set;} public bool UseShortFileNames {get; set;} public int ProductVersion { get; set; } + public int MinimumApiLevel {get; set;} = 24; public string MappingReportFile { get; set; } public bool OnlyRunApiXmlAdjuster { get; set; } public string ApiXmlAdjusterOutput { get; set; } @@ -128,6 +129,9 @@ public static CodeGeneratorOptions Parse (string[] args) { "product-version=", "Xamarin.Android Major Product Version", (int? v) => opts.ProductVersion = v.HasValue ? v.Value : 0 }, + { "minimum-api-level=", + "Minimum supported Android API {LEVEL}. APIs available at or below this level never need a [SupportedOSPlatform] attribute since they're always present. Defaults to 24.", + (int v) => opts.MinimumApiLevel = v }, { "v:", "Logging Verbosity", (int? v) => Report.Verbosity = v.HasValue ? v.Value : (Report.Verbosity ?? 0) + 1 }, diff --git a/external/Java.Interop/tools/generator/SourceWriters/Extensions/SourceWriterExtensions.cs b/external/Java.Interop/tools/generator/SourceWriters/Extensions/SourceWriterExtensions.cs index f9f8e77e2a8..e5a1da19986 100644 --- a/external/Java.Interop/tools/generator/SourceWriters/Extensions/SourceWriterExtensions.cs +++ b/external/Java.Interop/tools/generator/SourceWriters/Extensions/SourceWriterExtensions.cs @@ -12,8 +12,6 @@ namespace generator.SourceWriters { public static class SourceWriterExtensions { - const int MINIMUM_API_LEVEL = 21; - public static void AddField (TypeWriter tw, GenBase type, Field field, CodeGenerationOptions opt) { if (field.NeedsProperty) @@ -313,7 +311,7 @@ public static void AddSupportedOSPlatform (List attributes, And { // There's no sense in writing say 'android15' because we do not support older APIs, // so those APIs will be available in all of our versions. - if (since > MINIMUM_API_LEVEL && opt.CodeGenerationTarget == Xamarin.Android.Binder.CodeGenerationTarget.XAJavaInterop1) + if (since > opt.MinimumApiLevel && opt.CodeGenerationTarget == Xamarin.Android.Binder.CodeGenerationTarget.XAJavaInterop1) attributes.Add (new SupportedOSPlatformAttr (since)); } @@ -344,7 +342,7 @@ static bool AddObsoletedOSPlatformAttribute (List attributes, s return false; // If it was obsoleted in a version earlier than we support (like 15), use a regular [Obsolete] instead - if (!deprecatedSince.HasValue || deprecatedSince.Value <= MINIMUM_API_LEVEL) + if (!deprecatedSince.HasValue || deprecatedSince.Value <= opt.MinimumApiLevel) return false; // This is the default Android message, but it isn't useful so remove it diff --git a/src/Mono.Android/Mono.Android.targets b/src/Mono.Android/Mono.Android.targets index 912294a3b63..ca88ab316d6 100644 --- a/src/Mono.Android/Mono.Android.targets +++ b/src/Mono.Android/Mono.Android.targets @@ -127,6 +127,7 @@ "$(MicrosoftAndroidSdkOutDir)generator.dll" <_GenFlags>--public --product-version=7 <_ApiLevel>--api-level=$(AndroidApiLevel) + <_MinimumApiLevel>--minimum-api-level=$(AndroidMinimumDotNetApiLevel) <_Out>-o "$(IntermediateOutputPath)mcw" <_Codegen>--codegen-target=XAJavaInterop1 <_Fixup>--fixup=metadata @@ -144,7 +145,7 @@ <_LangFeatures Condition=" $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '7.0')) ">$(_LangFeatures),obsoleted-platform-attributes diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/CodeBehindTests.cs b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/CodeBehindTests.cs index 6344acedc7b..3ec52b05d35 100644 --- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/CodeBehindTests.cs +++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/CodeBehindTests.cs @@ -521,6 +521,7 @@ string[] GetBuildProperties (LocalBuilder builder, AndroidRuntime runtime, bool var noWarn = new List { "CA1416", "CS0414", + "CS0618", "CS1591", "XA1005", "XA4225", diff --git a/tests/api-compatibility/acceptable-breakages-vReference-net11.0.txt b/tests/api-compatibility/acceptable-breakages-vReference-net11.0.txt index e9145ee011b..d368b6b6ba5 100644 --- a/tests/api-compatibility/acceptable-breakages-vReference-net11.0.txt +++ b/tests/api-compatibility/acceptable-breakages-vReference-net11.0.txt @@ -49,3 +49,5550 @@ TypesMustExist : Type 'Xamarin.Android.Net.AndroidClientHandler' does not exist CannotRemoveBaseTypeOrInterface : Type 'Android.Views.InputMethods.EditorInfo' does not implement interface 'Android.Text.IInputType' in the implementation but it does in the contract. CannotRemoveAttribute : Attribute 'System.Diagnostics.CodeAnalysis.RequiresUnreferencedCodeAttribute' exists on 'Java.Interop.ExportAttribute' in the contract but not the implementation. CannotRemoveAttribute : Attribute 'System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute' exists on parameter 'targetType' on member 'Android.Graphics.ColorValueMarshaler.CreateGenericValue(Java.Interop.JniObjectReference, Java.Interop.JniObjectReferenceOptions, System.Type)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.DisableSelf()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.DispatchGesture(Android.AccessibilityServices.GestureDescription, Android.AccessibilityServices.AccessibilityService.GestureResultCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.GetMagnificationController()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.GetSoftKeyboardController()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.GestureResultCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.GestureResultCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.GestureResultCallback.OnCancelled(Android.AccessibilityServices.GestureDescription)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.GestureResultCallback.OnCompleted(Android.AccessibilityServices.GestureDescription)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController.AddListener(Android.AccessibilityServices.AccessibilityService.MagnificationController.IOnMagnificationChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController.AddListener(Android.AccessibilityServices.AccessibilityService.MagnificationController.IOnMagnificationChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController.RemoveListener(Android.AccessibilityServices.AccessibilityService.MagnificationController.IOnMagnificationChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController.Reset(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController.SetCenter(System.Single, System.Single, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController.SetScale(System.Single, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.MagnificationController.IOnMagnificationChangedListener.OnMagnificationChanged(Android.AccessibilityServices.AccessibilityService.MagnificationController, Android.Graphics.Region, System.Single, System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.SoftKeyboardController' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.AddOnShowModeChangedListener(Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.IOnShowModeChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.AddOnShowModeChangedListener(Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.IOnShowModeChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.RemoveOnShowModeChangedListener(Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.IOnShowModeChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.SetShowMode(Android.AccessibilityServices.AccessibilityServiceShowMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.AccessibilityService.SoftKeyboardController.IOnShowModeChangedListener.OnShowModeChanged(Android.AccessibilityServices.AccessibilityService.SoftKeyboardController, Android.AccessibilityServices.AccessibilityServiceShowMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription.GetStroke(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription.Builder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription.Builder.AddStroke(Android.AccessibilityServices.GestureDescription.StrokeDescription)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription.StrokeDescription' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.AccessibilityServices.GestureDescription.StrokeDescription..ctor(Android.Graphics.Path, System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Accounts.AccountManager.NewChooseAccountIntent(Android.Accounts.Account, System.Collections.Generic.IList, System.String[], System.Boolean, System.String, System.String, System.String[], Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Accounts.AccountManager.NewChooseAccountIntent(Android.Accounts.Account, System.Collections.Generic.IList, System.String[], System.String, System.String, System.String[], Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Accounts.AccountManager.NotifyAccountAuthenticated(Android.Accounts.Account)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Accounts.AccountManager.RemoveAccount(Android.Accounts.Account, Android.Accounts.IAccountManagerCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Accounts.AccountManager.RemoveAccount(Android.Accounts.Account, Android.App.Activity, Android.Accounts.IAccountManagerCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Accounts.AccountManager.RemoveAccountExplicitly(Android.Accounts.Account)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Animation.StateListAnimator.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Animation.ValueAnimator.SetCurrentFraction(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.DismissKeyboardShortcutsHelper()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.EnterPictureInPictureMode()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnLocalVoiceInteractionStarted()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnLocalVoiceInteractionStopped()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnMultiWindowModeChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnPictureInPictureModeChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnProvideAssistContent(Android.App.Assist.AssistContent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnProvideKeyboardShortcuts(System.Collections.Generic.IList, Android.Views.IMenu, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnProvideReferrer()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnRequestPermissionsResult(System.Int32, System.String[], Android.Content.PM.Permission[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnSearchRequested(Android.Views.SearchEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnStateNotSaved()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.OnWindowStartingActionMode(Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.RequestDragAndDropPermissions(Android.Views.DragEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.RequestPermissions(System.String[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.RequestShowKeyboardShortcuts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Activity.SetProgress(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Activity.SetProgressBarIndeterminate(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Activity.SetProgressBarIndeterminateVisibility(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Activity.SetProgressBarVisibility(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Activity.SetSecondaryProgress(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.SetVrModeEnabled(System.Boolean, Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.ShouldShowRequestPermissionRationale(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.ShowAssist(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.ShowLockTaskEscapeMessage()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.StartActionMode(Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.StartLocalVoiceInteraction(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Activity.StopLocalVoiceInteraction()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.ActivityManager.ClearWatchHeapLimit()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.ActivityManager.SetWatchHeapLimit(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.ActivityOptions.MakeBasic()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.ActivityOptions.MakeClipRevealAnimation(Android.Views.View, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.ActivityOptions.RequestUsageTimeReport(Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.ActivityOptions.SetLaunchBounds(Android.Graphics.Rect)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AlarmManager.Cancel(Android.App.AlarmManager.IOnAlarmListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AlarmManager.Set(Android.App.AlarmType, System.Int64, System.String, Android.App.AlarmManager.IOnAlarmListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AlarmManager.SetAndAllowWhileIdle(Android.App.AlarmType, System.Int64, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AlarmManager.SetExact(Android.App.AlarmType, System.Int64, System.String, Android.App.AlarmManager.IOnAlarmListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AlarmManager.SetExactAndAllowWhileIdle(Android.App.AlarmType, System.Int64, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AlarmManager.SetWindow(Android.App.AlarmType, System.Int64, System.Int64, System.String, Android.App.AlarmManager.IOnAlarmListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AlarmManager.IOnAlarmListener.OnAlarm()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.AlertDialog.Builder.SetInverseBackgroundForced(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AppOpsManager.NoteProxyOp(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AppOpsManager.NoteProxyOpNoThrow(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AppOpsManager.PermissionToOp(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule..ctor(Android.OS.Parcel)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule..ctor(System.String, Android.Content.ComponentName, Android.Net.Uri, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule.ConditionId.set(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule.Enabled.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule.InterruptionFilter.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule.Name.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.AutomaticZenRule.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.DatePickerDialog..ctor(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.DatePickerDialog..ctor(Android.Content.Context, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.DatePickerDialog.SetOnDateSetListener(Android.App.DatePickerDialog.IOnDateSetListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Dialog.OnSearchRequested(Android.Views.SearchEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Dialog.OnWindowStartingActionMode(Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.DownloadManager.AddCompletedDownload(System.String, System.String, System.Boolean, System.String, System.String, System.Int64, System.Boolean, Android.Net.Uri, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.DownloadManager.Request.SetRequiresCharging(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.DownloadManager.Request.SetRequiresDeviceIdle(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Fragment.OnAttach(Android.App.Activity)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.OnAttach(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.OnAttachFragment(Android.App.Fragment)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Fragment.OnInflate(Android.App.Activity, Android.Util.IAttributeSet, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.OnInflate(Android.Content.Context, Android.Util.IAttributeSet, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.OnMultiWindowModeChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.OnPictureInPictureModeChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.OnRequestPermissionsResult(System.Int32, System.String[], Android.Content.PM.Permission[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.RequestPermissions(System.String[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.ShouldShowRequestPermissionRationale(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Fragment.StartIntentSenderForResult(Android.Content.IntentSender, System.Int32, Android.Content.Intent, Android.Content.ActivityFlags, Android.Content.ActivityFlags, System.Int32, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentContainer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentContainer..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentContainer.OnFindViewById(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentContainer.OnHasView()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.AttachHost(Android.App.Fragment)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.CreateController(Android.App.FragmentHostCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchActivityCreated()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchConfigurationChanged(Android.Content.Res.Configuration)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchContextItemSelected(Android.Views.IMenuItem)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchCreate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchCreateOptionsMenu(Android.Views.IMenu, Android.Views.MenuInflater)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchDestroy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchDestroyView()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchLowMemory()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchMultiWindowModeChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchOptionsItemSelected(Android.Views.IMenuItem)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchOptionsMenuClosed(Android.Views.IMenu)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchPause()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchPictureInPictureModeChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchPrepareOptionsMenu(Android.Views.IMenu)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchResume()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchStart()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchStop()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DispatchTrimMemory(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DoLoaderDestroy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DoLoaderStart()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DoLoaderStop(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.DumpLoaders(System.String, Java.IO.FileDescriptor, Java.IO.PrintWriter, System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.ExecPendingActions()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.FindFragmentByWho(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.NoteStateNotSaved()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.OnCreateView(Android.Views.View, System.String, Android.Content.Context, Android.Util.IAttributeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.ReportLoaderStart()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.RestoreAllState(Android.OS.IParcelable, Android.App.FragmentManagerNonConfig)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.FragmentController.RestoreAllState(Android.OS.IParcelable, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.RestoreAllState(Android.OS.IParcelable, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.RestoreLoaderNonConfig(Android.Util.ArrayMap)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.RetainLoaderNonConfig()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.RetainNestedNonConfig()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.FragmentController.RetainNonConfig()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.RetainNonConfig()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentController.SaveAllState()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback..ctor(Android.Content.Context, Android.OS.Handler, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnAttachFragment(Android.App.Fragment)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnDump(System.String, Java.IO.FileDescriptor, Java.IO.PrintWriter, System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnFindViewById(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnGetHost()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnGetLayoutInflater()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnGetWindowAnimations()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnHasView()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnHasWindowAnimations()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnInvalidateOptionsMenu()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnRequestPermissionsFromFragment(Android.App.Fragment, System.String[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnShouldSaveFragmentState(Android.App.Fragment)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnStartActivityFromFragment(Android.App.Fragment, Android.Content.Intent, System.Int32, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnStartIntentSenderFromFragment(Android.App.Fragment, Android.Content.IntentSender, System.Int32, Android.Content.Intent, Android.Content.ActivityFlags, Android.Content.ActivityFlags, System.Int32, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentHostCallback.OnUseFragmentManagerInflaterFactory()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentManagerNonConfig' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentTransaction.CommitNow()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.FragmentTransaction.CommitNowAllowingStateLoss()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Instrumentation.GetUiAutomation(Android.App.UiAutomationFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Instrumentation.StartAllocCounting()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Instrumentation.StopAllocCounting()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.GetLargeIcon()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Action..ctor(System.Int32, Java.Lang.ICharSequence, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Action..ctor(System.Int32, System.String, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.Builder..ctor(Android.Graphics.Drawables.Icon, Java.Lang.ICharSequence, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.Builder..ctor(Android.Graphics.Drawables.Icon, System.String, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Action.Builder..ctor(System.Int32, Java.Lang.ICharSequence, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Action.Builder..ctor(System.Int32, System.String, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.Builder.SetAllowGeneratedReplies(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.WearableExtender.SetCancelLabel(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.WearableExtender.SetCancelLabel(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.WearableExtender.SetConfirmLabel(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.WearableExtender.SetConfirmLabel(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.WearableExtender.SetHintLaunchesActivity(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.WearableExtender.SetInProgressLabel(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Action.WearableExtender.SetInProgressLabel(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.BigPictureStyle..ctor(Android.App.Notification.Builder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.BigPictureStyle.BigLargeIcon(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.BigTextStyle..ctor(Android.App.Notification.Builder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.AddAction(System.Int32, Java.Lang.ICharSequence, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.AddAction(System.Int32, System.String, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.CreateBigContentView()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.CreateContentView()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.CreateHeadsUpContentView()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.RecoverBuilder(Android.Content.Context, Android.App.Notification)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetActions(Android.App.Notification.Action[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetChronometerCountDown(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetContent(Android.Widget.RemoteViews)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetContentInfo(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetContentInfo(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetCustomBigContentView(Android.Widget.RemoteViews)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetCustomContentView(Android.Widget.RemoteViews)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetCustomHeadsUpContentView(Android.Widget.RemoteViews)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetLargeIcon(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetRemoteInputHistory(Java.Lang.ICharSequence[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetRemoteInputHistory(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.Builder.SetSmallIcon(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender..ctor(Android.App.Notification)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Extend(Android.App.Notification.Builder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.GetUnreadConversation()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.SetColor(Android.Graphics.Color)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.SetLargeIcon(Android.Graphics.Bitmap)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.SetUnreadConversation(Android.App.Notification.CarExtender.UnreadConversation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Builder..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Builder.AddMessage(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Builder.SetLatestTimestamp(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Builder.SetReadPendingIntent(Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.Builder.SetReplyAction(Android.App.PendingIntent, Android.App.RemoteInput)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.UnreadConversation' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.UnreadConversation.GetMessages()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.CarExtender.UnreadConversation.GetParticipants()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.DecoratedCustomViewStyle' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.DecoratedCustomViewStyle..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.DecoratedMediaCustomViewStyle' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.DecoratedMediaCustomViewStyle..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.InboxStyle..ctor(Android.App.Notification.Builder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Notification.MediaStyle..ctor(Android.App.Notification.Builder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle..ctor(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.AddMessage(Java.Lang.ICharSequence, System.Int64, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.AddMessage(Android.App.Notification.MessagingStyle.Message)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.AddMessage(System.String, System.Int64, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.SetConversationTitle(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.SetConversationTitle(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.Message' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.Message..ctor(Java.Lang.ICharSequence, System.Int64, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.Message..ctor(System.String, System.Int64, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.MessagingStyle.Message.SetData(System.String, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.WearableExtender.SetDismissalId(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.WearableExtender.SetHintAmbientBigPicture(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.WearableExtender.SetHintAvoidBackgroundClipping(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.WearableExtender.SetHintContentIntentLaunchesActivity(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Notification.WearableExtender.SetHintScreenTimeout(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.AddAutomaticZenRule(Android.App.AutomaticZenRule)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.AreNotificationsEnabled()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.GetActiveNotifications()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.GetAutomaticZenRule(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.NotificationPolicy.set(Android.App.NotificationManager.Policy)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.RemoveAutomaticZenRule(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.SetInterruptionFilter(Android.App.InterruptionFilter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.UpdateAutomaticZenRule(System.String, Android.App.AutomaticZenRule)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy..ctor(Android.App.NotificationPriorityCategory, Android.App.NotificationPrioritySenders, Android.App.NotificationPrioritySenders)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy..ctor(Android.App.NotificationPriorityCategory, Android.App.NotificationPrioritySenders, Android.App.NotificationPrioritySenders, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy.PriorityCategoriesToString(Android.App.NotificationPriorityCategory)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy.PrioritySendersToString(Android.App.NotificationPrioritySenders)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy.SuppressedEffectsToString(Android.App.SuppressedEffects)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.NotificationManager.Policy.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.PendingIntent.Send(Android.Content.Context, Android.App.Result, Android.Content.Intent, Android.App.PendingIntent.IOnFinished, Android.OS.Handler, System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Service.StopForeground(Android.App.StopForegroundFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.SharedElementCallback.OnSharedElementsArrived(System.Collections.Generic.IList, System.Collections.Generic.IList, Android.App.SharedElementCallback.IOnSharedElementsReadyListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.SharedElementCallback.IOnSharedElementsReadyListener.OnSharedElementsReady()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.GetActiveRequest(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.GetActiveRequests()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.SubmitRequest(Android.App.VoiceInteractor.Request)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.SubmitRequest(Android.App.VoiceInteractor.Request, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.SupportsCommands(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.AbortVoiceRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.AbortVoiceRequest..ctor(Android.App.VoiceInteractor.Prompt, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.AbortVoiceRequest.OnAbortResult(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.CommandRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.CommandRequest..ctor(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.CommandRequest.OnCommandResult(System.Boolean, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.CompleteVoiceRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.CompleteVoiceRequest..ctor(Android.App.VoiceInteractor.Prompt, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.CompleteVoiceRequest.OnCompleteResult(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.ConfirmationRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.ConfirmationRequest..ctor(Android.App.VoiceInteractor.Prompt, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.ConfirmationRequest.OnConfirmationResult(System.Boolean, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest..ctor(Android.App.VoiceInteractor.Prompt, Android.App.VoiceInteractor.PickOptionRequest.Option[], Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.OnPickOptionResult(System.Boolean, Android.App.VoiceInteractor.PickOptionRequest.Option[], Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option..ctor(Java.Lang.ICharSequence, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option..ctor(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.AddSynonym(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.AddSynonym(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.CountSynonyms()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.Extras.set(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.GetSynonymAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.GetSynonymAtFormatted(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.PickOptionRequest.Option.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt..ctor(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt..ctor(Java.Lang.ICharSequence[], Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt..ctor(System.String[], System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt.CountVoicePrompts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt.GetVoicePromptAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt.GetVoicePromptAtFormatted(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Prompt.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Request' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Request.Cancel()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Request.OnAttached(Android.App.Activity)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Request.OnCancel()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.VoiceInteractor.Request.OnDetached()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.Clear(Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.GetBuiltInDrawable(Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.GetBuiltInDrawable(System.Int32, System.Int32, System.Boolean, System.Single, System.Single, Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.GetWallpaperFile(Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.GetWallpaperId(Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.SetBitmap(Android.Graphics.Bitmap, Android.Graphics.Rect, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.SetBitmap(Android.Graphics.Bitmap, Android.Graphics.Rect, System.Boolean, Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.SetResource(System.Int32, Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.SetStream(System.IO.Stream, Android.Graphics.Rect, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.WallpaperManager.SetStream(System.IO.Stream, Android.Graphics.Rect, System.Boolean, Android.App.WallpaperManagerFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnBugreportFailed(Android.Content.Context, Android.Content.Intent, Android.App.Admin.BugReportFailureReason)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnBugreportShared(Android.Content.Context, Android.Content.Intent, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnBugreportSharingDeclined(Android.Content.Context, Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnChoosePrivateKeyAlias(Android.Content.Context, Android.Content.Intent, System.Int32, Android.Net.Uri, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnReadyForUserInitialization(Android.Content.Context, Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnReadyForUserInitialization(Android.Content.Context, Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnSecurityLogsAvailable(Android.Content.Context, Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DeviceAdminReceiver.OnSystemUpdatePending(Android.Content.Context, Android.Content.Intent, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.ClearProfileOwner(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.CreateAndInitializeUser(Android.Content.ComponentName, System.String, System.String, Android.Content.ComponentName, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.CreateAndManageUser(Android.Content.ComponentName, System.String, Android.Content.ComponentName, Android.OS.PersistableBundle, Android.App.Admin.UserManagementFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.CreateUser(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetAlwaysOnVpnPackage(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetApplicationRestrictionsManagingPackage(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetBluetoothContactSharingDisabled(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetCertInstallerPackage(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetCrossProfileContactsSearchDisabled(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetLongSupportMessage(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetLongSupportMessageFormatted(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetOrganizationColor(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetOrganizationName(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetOrganizationNameFormatted(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetParentProfileInstance(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetPermissionGrantState(Android.Content.ComponentName, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetPermissionPolicy(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetShortSupportMessage(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetShortSupportMessageFormatted(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetTrustAgentConfiguration(Android.Content.ComponentName, Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetUserRestrictions(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.GetWifiMacAddress(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.InstallKeyPair(Android.Content.ComponentName, Java.Security.IPrivateKey, Java.Security.Cert.Certificate[], System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.IsManagedProfile(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.IsPackageSuspended(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.IsProvisioningAllowed(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.IsSecurityLoggingEnabled(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.Reboot(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.RemoveKeyPair(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.RequestBugreport(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.RetrievePreRebootSecurityLogs(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.RetrieveSecurityLogs(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetAlwaysOnVpnPackage(Android.Content.ComponentName, System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetApplicationRestrictionsManagingPackage(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetBluetoothContactSharingDisabled(Android.Content.ComponentName, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetCertInstallerPackage(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetCrossProfileContactsSearchDisabled(Android.Content.ComponentName, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetDeviceOwnerLockScreenInfo(Android.Content.ComponentName, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetDeviceOwnerLockScreenInfo(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetKeyguardDisabled(Android.Content.ComponentName, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetLongSupportMessage(Android.Content.ComponentName, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetLongSupportMessage(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetOrganizationColor(Android.Content.ComponentName, Android.Graphics.Color)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetOrganizationName(Android.Content.ComponentName, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetOrganizationName(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetPackagesSuspended(Android.Content.ComponentName, System.String[], System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetPermissionGrantState(Android.Content.ComponentName, System.String, System.String, Android.App.Admin.PermissionGrantState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetPermissionPolicy(Android.Content.ComponentName, Android.App.Admin.PermissionPolicy)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetSecurityLoggingEnabled(Android.Content.ComponentName, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetShortSupportMessage(Android.Content.ComponentName, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetShortSupportMessage(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetStatusBarDisabled(Android.Content.ComponentName, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetSystemUpdatePolicy(Android.Content.ComponentName, Android.App.Admin.SystemUpdatePolicy)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetTrustAgentConfiguration(Android.Content.ComponentName, Android.Content.ComponentName, Android.OS.PersistableBundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.DevicePolicyManager.SetUserIcon(Android.Content.ComponentName, Android.Graphics.Bitmap)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SecurityLog' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SecurityLog..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SecurityLog.SecurityEvent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SecurityLog.SecurityEvent.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SecurityLog.SecurityEvent.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SystemUpdatePolicy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SystemUpdatePolicy.CreateAutomaticInstallPolicy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SystemUpdatePolicy.CreatePostponeInstallPolicy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SystemUpdatePolicy.CreateWindowedInstallPolicy(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SystemUpdatePolicy.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Admin.SystemUpdatePolicy.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent.ClipData.set(Android.Content.ClipData)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent.Intent.set(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent.StructuredData.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent.WebUri.set(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistContent.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.GetWindowNodeAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.ViewNode' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.ViewNode.GetChildAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.ViewNode.GetTextLineBaselines()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.ViewNode.GetTextLineCharOffsets()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Assist.AssistStructure.WindowNode' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Backup.BackupAgent.OnQuotaExceeded(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.GetTriggerContentUris()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.Builder.AddTriggerContentUri(Android.App.Job.JobInfo.TriggerContentUri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.Builder.SetPeriodic(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.Builder.SetTriggerContentMaxDelay(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.Builder.SetTriggerContentUpdateDelay(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.TriggerContentUri' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.TriggerContentUri..ctor(Android.Net.Uri, Android.App.Job.TriggerContentUriFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.TriggerContentUri.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobInfo.TriggerContentUri.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobParameters.GetTriggeredContentAuthorities()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobParameters.GetTriggeredContentUris()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Job.JobScheduler.GetPendingJob(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStats' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStats.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStats.GetNextBucket(Android.App.Usage.NetworkStats.Bucket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStats.Bucket' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStats.Bucket..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.QueryDetails(Android.Net.ConnectivityType, System.String, System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.QueryDetailsForUid(Android.Net.ConnectivityType, System.String, System.Int64, System.Int64, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.QueryDetailsForUidTag(Android.Net.ConnectivityType, System.String, System.Int64, System.Int64, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.QuerySummary(Android.Net.ConnectivityType, System.String, System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.QuerySummaryForDevice(Android.Net.ConnectivityType, System.String, System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.QuerySummaryForUser(Android.Net.ConnectivityType, System.String, System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.RegisterUsageCallback(Android.Net.ConnectivityType, System.String, System.Int64, Android.App.Usage.NetworkStatsManager.UsageCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.RegisterUsageCallback(Android.Net.ConnectivityType, System.String, System.Int64, Android.App.Usage.NetworkStatsManager.UsageCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.UnregisterUsageCallback(Android.App.Usage.NetworkStatsManager.UsageCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.UsageCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.UsageCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.NetworkStatsManager.UsageCallback.OnThresholdReached(Android.Net.ConnectivityType, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.App.Usage.UsageStatsManager.IsAppInactive(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothDevice.ConnectGatt(Android.Content.Context, System.Boolean, Android.Bluetooth.BluetoothGattCallback, Android.Bluetooth.BluetoothTransports)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothGattCharacteristic.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothGattCharacteristic.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothGattDescriptor.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothGattDescriptor.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothGattServerCallback.OnMtuChanged(Android.Bluetooth.BluetoothDevice, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothGattService.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.BluetoothGattService.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.LE.ScanSettings.Builder.SetCallbackType(Android.Bluetooth.LE.ScanCallbackType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.LE.ScanSettings.Builder.SetMatchMode(Android.Bluetooth.LE.BluetoothScanMatchMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Bluetooth.LE.ScanSettings.Builder.SetNumOfMatches(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.AbstractThreadedSyncAdapter.OnSecurityException(Android.Accounts.Account, Android.OS.Bundle, System.String, Android.Content.SyncResult)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ClipDescription.Extras.set(Android.OS.PersistableBundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ComponentName.CreateRelative(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ComponentName.CreateRelative(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContentProviderClient.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Content.ContentProviderClient.Release()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContentResolver.NotifyChange(Android.Net.Uri, Android.Database.ContentObserver, Android.Content.NotifyChangeFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.CheckSelfPermission(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.CreateDeviceProtectedStorageContext()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.DataDir.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.DeleteSharedPreferences(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.GetColor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.GetColorStateList(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.GetSystemService(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.GetSystemServiceName(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.IsDeviceProtectedStorage.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.MoveDatabaseFrom(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Context.MoveSharedPreferencesFrom(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContextWrapper.CheckSelfPermission(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContextWrapper.CreateDeviceProtectedStorageContext()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContextWrapper.DeleteSharedPreferences(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContextWrapper.GetSystemServiceName(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContextWrapper.MoveDatabaseFrom(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.ContextWrapper.MoveSharedPreferencesFrom(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Intent.CreateChooser(Android.Content.Intent, Java.Lang.ICharSequence, Android.Content.IntentSender)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Intent.CreateChooser(Android.Content.Intent, System.String, Android.Content.IntentSender)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.RestrictionEntry.CreateBundleArrayEntry(System.String, Android.Content.RestrictionEntry[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.RestrictionEntry.CreateBundleEntry(System.String, Android.Content.RestrictionEntry[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.RestrictionEntry.GetRestrictions()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.RestrictionEntry.SetRestrictions(Android.Content.RestrictionEntry[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.RestrictionsManager.ConvertRestrictionsToBundle(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.SyncRequest.Builder.SetRequiresCharging(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.ActivityInfo.WindowLayout' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.ActivityInfo.WindowLayout..ctor(System.Int32, System.Single, System.Int32, System.Single, Android.Views.GravityFlags, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.LauncherApps.Callback.OnPackagesSuspended(System.String[], Android.OS.UserHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.LauncherApps.Callback.OnPackagesUnsuspended(System.String[], Android.OS.UserHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.PackageInstaller.Session.RemoveSplit(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.PackageInstaller.SessionParams.SetOriginatingUid(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.PackageItemInfo.LoadUnbadgedIcon(Android.Content.PM.PackageManager)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.PackageManager.GetPackageGids(System.String, Android.Content.PM.PackageInfoFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.PackageManager.GetPackageUid(System.String, Android.Content.PM.PackageInfoFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.PackageManager.HasSystemFeature(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.PM.PackageManager.IsPermissionRevokedByPolicy(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Content.Res.ColorStateList.CreateFromXml(Android.Content.Res.Resources, System.Xml.XmlReader)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Res.ColorStateList.CreateFromXml(Android.Content.Res.Resources, System.Xml.XmlReader, Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Res.Configuration.Locales.set(Android.OS.LocaleList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Content.Res.Resources.GetColor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Res.Resources.GetColor(System.Int32, Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Content.Res.Resources.GetColorStateList(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Res.Resources.GetColorStateList(System.Int32, Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Content.Res.Resources.GetDrawable(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Content.Res.Resources.GetDrawableForDensity(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Res.Resources.NotFoundException..ctor(System.String, Java.Lang.Exception)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Content.Res.TypedArray.HasValueOrEmpty(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Database.AbstractCursor.Extras.set(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Database.CursorWrapper.Deactivate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Database.CursorWrapper.Extras.set(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Database.CursorWrapper.Requery()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Database.ICursor.Extras.set(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Database.Sqlite.SQLiteDatabase.ValidateSql(System.String, Android.OS.CancellationSignal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Drm.DrmManagerClient.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Drm.DrmManagerClient.Release()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Graphics.BitmapFactory.Options.RequestCancelDecode()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Canvas.DrawTextRun(Java.Lang.ICharSequence, System.Int32, System.Int32, System.Int32, System.Int32, System.Single, System.Single, System.Boolean, Android.Graphics.Paint)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Canvas.DrawTextRun(System.Char[], System.Int32, System.Int32, System.Int32, System.Int32, System.Single, System.Single, System.Boolean, Android.Graphics.Paint)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Canvas.DrawTextRun(System.String, System.Int32, System.Int32, System.Int32, System.Int32, System.Single, System.Single, System.Boolean, Android.Graphics.Paint)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.ColorObject.Luminance(Android.Graphics.Color)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Outline.GetRect(Android.Graphics.Rect)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Outline.Offset(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.GetOffsetForAdvance(Java.Lang.ICharSequence, System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.GetOffsetForAdvance(System.Char[], System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.GetOffsetForAdvance(System.String, System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.GetRunAdvance(Java.Lang.ICharSequence, System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.GetRunAdvance(System.Char[], System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.GetRunAdvance(System.String, System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.HasGlyph(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Paint.TextLocales.set(Android.OS.LocaleList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Animatable2AnimationCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Animatable2AnimationCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Animatable2AnimationCallback.OnAnimationEnd(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Animatable2AnimationCallback.OnAnimationStart(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.AnimatedVectorDrawable.ClearAnimationCallbacks()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.AnimatedVectorDrawable.RegisterAnimationCallback(Android.Graphics.Drawables.Animatable2AnimationCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.AnimatedVectorDrawable.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.AnimatedVectorDrawable.UnregisterAnimationCallback(Android.Graphics.Drawables.Animatable2AnimationCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Drawable.GetHotspotBounds(Android.Graphics.Rect)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Drawable.OnLayoutDirectionChanged(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Drawable.SetDither(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Drawable.SetLayoutDirection(Android.Views.LayoutDirection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper..ctor(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper.Draw(Android.Graphics.Canvas)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper.Drawable.set(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper.InvalidateDrawable(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper.ScheduleDrawable(Android.Graphics.Drawables.Drawable, Java.Lang.IRunnable, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper.SetAlpha(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper.SetColorFilter(Android.Graphics.ColorFilter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.DrawableWrapper.UnscheduleDrawable(Android.Graphics.Drawables.Drawable, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.GradientDrawable.GetColors()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.GradientDrawable.GetCornerRadii()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.IAnimatable2.ClearAnimationCallbacks()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.IAnimatable2.RegisterAnimationCallback(Android.Graphics.Drawables.Animatable2AnimationCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.IAnimatable2.UnregisterAnimationCallback(Android.Graphics.Drawables.Animatable2AnimationCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.CreateWithBitmap(Android.Graphics.Bitmap)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.CreateWithContentUri(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.CreateWithContentUri(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.CreateWithData(System.Byte[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.CreateWithFilePath(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.CreateWithResource(Android.Content.Context, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.CreateWithResource(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.LoadDrawable(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.LoadDrawableAsync(Android.Content.Context, Android.OS.Message)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.LoadDrawableAsync(Android.Content.Context, Android.Graphics.Drawables.Icon.IOnDrawableLoadedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.SetTint(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.SetTintList(Android.Content.Res.ColorStateList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.SetTintMode(Android.Graphics.PorterDuff.Mode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.Icon.IOnDrawableLoadedListener.OnDrawableLoaded(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.AddLayer(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.FindIndexByLayerId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerGravity(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerHeight(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerInsetBottom(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerInsetEnd(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerInsetLeft(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerInsetRight(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerInsetStart(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerInsetTop(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.GetLayerWidth(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetDrawable(System.Int32, Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerGravity(System.Int32, Android.Views.GravityFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerHeight(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerInsetBottom(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerInsetEnd(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerInsetLeft(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerInsetRelative(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerInsetRight(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerInsetStart(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerInsetTop(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerSize(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetLayerWidth(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetPadding(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.LayerDrawable.SetPaddingRelative(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Graphics.Drawables.RippleDrawable.Radius.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorAdditionalInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorEventCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorEventCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorEventCallback.OnAccuracyChanged(Android.Hardware.Sensor, Android.Hardware.SensorStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorEventCallback.OnFlushCompleted(Android.Hardware.Sensor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorEventCallback.OnSensorAdditionalInfo(Android.Hardware.SensorAdditionalInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorEventCallback.OnSensorChanged(Android.Hardware.SensorEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.GetDynamicSensorList(Android.Hardware.SensorType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.RegisterDynamicSensorCallback(Android.Hardware.SensorManager.DynamicSensorCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.RegisterDynamicSensorCallback(Android.Hardware.SensorManager.DynamicSensorCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.UnregisterDynamicSensorCallback(Android.Hardware.SensorManager.DynamicSensorCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.DynamicSensorCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.DynamicSensorCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.DynamicSensorCallback.OnDynamicSensorConnected(Android.Hardware.Sensor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.SensorManager.DynamicSensorCallback.OnDynamicSensorDisconnected(Android.Hardware.Sensor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraCaptureSession.InputSurface.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraCaptureSession.IsReprocessable.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraCaptureSession.Prepare(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraCaptureSession.CaptureCallback.OnCaptureBufferLost(Android.Hardware.Camera2.CameraCaptureSession, Android.Hardware.Camera2.CaptureRequest, Android.Views.Surface, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraCaptureSession.StateCallback.OnSurfacePrepared(Android.Hardware.Camera2.CameraCaptureSession, Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraConstrainedHighSpeedCaptureSession' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraConstrainedHighSpeedCaptureSession..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraConstrainedHighSpeedCaptureSession.CreateHighSpeedRequestList(Android.Hardware.Camera2.CaptureRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraDevice.CreateCaptureSessionByOutputConfigurations(System.Collections.Generic.IList, Android.Hardware.Camera2.CameraCaptureSession.StateCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraDevice.CreateConstrainedHighSpeedCaptureSession(System.Collections.Generic.IList, Android.Hardware.Camera2.CameraCaptureSession.StateCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraDevice.CreateReprocessableCaptureSession(Android.Hardware.Camera2.Params.InputConfiguration, System.Collections.Generic.IList, Android.Hardware.Camera2.CameraCaptureSession.StateCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraDevice.CreateReprocessableCaptureSessionByConfigurations(Android.Hardware.Camera2.Params.InputConfiguration, System.Collections.Generic.IList, Android.Hardware.Camera2.CameraCaptureSession.StateCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraDevice.CreateReprocessCaptureRequest(Android.Hardware.Camera2.TotalCaptureResult)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraManager.RegisterTorchCallback(Android.Hardware.Camera2.CameraManager.TorchCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraManager.SetTorchMode(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraManager.UnregisterTorchCallback(Android.Hardware.Camera2.CameraManager.TorchCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraManager.TorchCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraManager.TorchCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraManager.TorchCallback.OnTorchModeChanged(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.CameraManager.TorchCallback.OnTorchModeUnavailable(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.InputConfiguration' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.InputConfiguration..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.OutputConfiguration' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.OutputConfiguration..ctor(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.OutputConfiguration..ctor(System.Int32, Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.OutputConfiguration.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.OutputConfiguration.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.StreamConfigurationMap.GetHighResolutionOutputSizes(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.StreamConfigurationMap.GetInputFormats()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.StreamConfigurationMap.GetInputSizes(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Camera2.Params.StreamConfigurationMap.GetValidOutputFormatsForInput(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.Authenticate(Android.Hardware.Fingerprints.FingerprintManager.CryptoObject, Android.OS.CancellationSignal, Android.Hardware.Fingerprints.FingerprintAuthenticationFlags, Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback.OnAuthenticationError(Android.Hardware.Fingerprints.FingerprintState, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback.OnAuthenticationError(Android.Hardware.Fingerprints.FingerprintState, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback.OnAuthenticationFailed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback.OnAuthenticationHelp(Android.Hardware.Fingerprints.FingerprintState, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback.OnAuthenticationHelp(Android.Hardware.Fingerprints.FingerprintState, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationCallback.OnAuthenticationSucceeded(Android.Hardware.Fingerprints.FingerprintManager.AuthenticationResult)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.AuthenticationResult' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.CryptoObject' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.CryptoObject..ctor(Java.Security.Signature)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.CryptoObject..ctor(Javax.Crypto.Cipher)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Hardware.Fingerprints.FingerprintManager.CryptoObject..ctor(Javax.Crypto.Mac)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CharCount(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointAt(Java.Lang.ICharSequence, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointAt(System.Char[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointAt(System.Char[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointAt(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointBefore(Java.Lang.ICharSequence, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointBefore(System.Char[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointBefore(System.Char[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointBefore(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointCount(Java.Lang.ICharSequence, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointCount(System.Char[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.CodePointCount(System.String, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.Digit(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.Digit(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.FoldCase(System.Int32, Android.Icu.Lang.FoldCaseOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.FoldCase(System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.FoldCase(System.String, Android.Icu.Lang.FoldCaseOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.FoldCase(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ForDigit(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetAge(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetBidiPairedBracket(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetCharFromExtendedName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetCharFromName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetCharFromNameAlias(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetCodePoint(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetCodePoint(System.Char, System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetCombiningClass(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetDirection(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetDirectionality(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetExtendedName(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetHanNumericValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetIntPropertyMaxValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetIntPropertyMinValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetIntPropertyValue(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetMirror(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetName(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetName(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetNameAlias(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetNumericValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetPropertyEnum(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetPropertyEnum(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetPropertyName(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetPropertyValueEnum(System.Int32, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetPropertyValueEnum(System.Int32, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetPropertyValueName(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetType(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GetUnicodeNumericValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.HasBinaryProperty(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsBaseForm(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsBMP(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsDefined(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsDigit(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsHighSurrogate(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsIdentifierIgnorable(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsISOControl(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsJavaIdentifierPart(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsJavaIdentifierStart(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsLegal(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsLegal(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsLetter(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsLetterOrDigit(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsLowerCase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsLowSurrogate(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsMirrored(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsPrintable(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsSpaceChar(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsSupplementary(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsSupplementaryCodePoint(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsSurrogatePair(System.Char, System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsTitleCase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsUAlphabetic(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsULowercase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsUnicodeIdentifierPart(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsUnicodeIdentifierStart(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsUpperCase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsUUppercase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsUWhiteSpace(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsValidCodePoint(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.IsWhitespace(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.OffsetByCodePoints(Java.Lang.ICharSequence, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.OffsetByCodePoints(System.Char[], System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.OffsetByCodePoints(System.String, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToChars(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToChars(System.Int32, System.Char[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToCodePoint(System.Char, System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToLowerCase(Android.Icu.Util.ULocale, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToLowerCase(Java.Util.Locale, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToLowerCase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToLowerCase(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToString(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToTitleCase(Android.Icu.Util.ULocale, System.String, Android.Icu.Text.BreakIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToTitleCase(Android.Icu.Util.ULocale, System.String, Android.Icu.Text.BreakIterator, Android.Icu.Lang.TitlecaseOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToTitleCase(Java.Util.Locale, System.String, Android.Icu.Text.BreakIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToTitleCase(Java.Util.Locale, System.String, Android.Icu.Text.BreakIterator, Android.Icu.Lang.TitlecaseOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToTitleCase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToTitleCase(System.String, Android.Icu.Text.BreakIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToUpperCase(Android.Icu.Util.ULocale, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToUpperCase(Java.Util.Locale, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToUpperCase(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.ToUpperCase(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.BidiPairedBracketType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.DecompositionType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.EastAsianWidth' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.GraphemeClusterBreak' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.HangulSyllableType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.JoiningGroup' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.JoiningType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.LineBreak' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.NumericType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.SentenceBreak' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.UnicodeBlock' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.UnicodeBlock.ForName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.UnicodeBlock.GetInstance(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.UnicodeBlock.Of(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacter.WordBreak' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacterCategory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacterCategory.ToString(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacterDirection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacterDirection.ToString(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacterEnums' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacterEnums.ECharacterCategory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UCharacterEnums.ECharacterDirection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UProperty' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UPropertyNameChoice' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.BreaksBetweenLetters(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetCode(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetCode(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetCode(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetCodeFromName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetName(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetSampleString(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetScript(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetScriptExtensions(System.Int32, Java.Util.BitSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetShortName(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.GetUsage(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.HasScript(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.IsCased(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.IsRightToLeft(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.ScriptUsage' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.ScriptUsage.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Lang.UScript.ScriptUsage.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(Java.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(Java.Math.BigInteger)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(Java.Math.BigInteger, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(System.Char[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(System.Char[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Abs()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Abs(Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Add(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Add(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ByteValueExact()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.CompareTo(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.CompareTo(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Divide(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Divide(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Divide(Android.Icu.Math.BigDecimal, Android.Icu.Math.RoundOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Divide(Android.Icu.Math.BigDecimal, System.Int32, Android.Icu.Math.RoundOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.DivideInteger(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.DivideInteger(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.DoubleValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.FloatValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Format(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Format(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, Android.Icu.Math.RoundOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.IntValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.IntValueExact()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.LongValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.LongValueExact()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Max(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Max(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Min(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Min(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.MovePointLeft(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.MovePointRight(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Multiply(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Multiply(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Negate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Negate(Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Plus()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Plus(Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Pow(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Pow(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Remainder(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Remainder(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Scale()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.SetScale(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.SetScale(System.Int32, Android.Icu.Math.RoundOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ShortValueExact()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Signum()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Subtract(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.Subtract(Android.Icu.Math.BigDecimal, Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ToBigDecimal()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ToBigInteger()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ToBigIntegerExact()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ToCharArray()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.UnscaledValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ValueOf(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ValueOf(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.BigDecimal.ValueOf(System.Int64, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.MathContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.MathContext..ctor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.MathContext..ctor(System.Int32, Android.Icu.Math.MathNotationForm)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.MathContext..ctor(System.Int32, Android.Icu.Math.MathNotationForm, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Math.MathContext..ctor(System.Int32, Android.Icu.Math.MathNotationForm, System.Boolean, Android.Icu.Math.RoundOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex..ctor(Android.Icu.Text.RuleBasedCollator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.AddLabels(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.AddLabels(Android.Icu.Util.ULocale[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.AddLabels(Java.Util.Locale[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.AddRecord(Java.Lang.ICharSequence, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.AddRecord(System.String, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.BuildImmutableIndex()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.ClearRecords()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.GetBucketIndex(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.GetBucketIndex(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Iterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.SetInflowLabel(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.SetMaxLabelCount(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.SetOverflowLabel(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.SetUnderflowLabel(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Bucket' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Bucket.GetLabelType()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Bucket.Iterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Bucket.Size()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Bucket.LabelType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Bucket.LabelType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Bucket.LabelType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.ImmutableIndex' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.ImmutableIndex.GetBucket(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.ImmutableIndex.GetBucketIndex(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.ImmutableIndex.GetBucketIndex(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.ImmutableIndex.Iterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.AlphabeticIndex.Record' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Current()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.First()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Following(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetCharacterInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetCharacterInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetLineInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetLineInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetRuleStatusVec(System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetSentenceInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetSentenceInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetTitleInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetTitleInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetWordInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.GetWordInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.IsBoundary(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Last()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Next(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Preceding(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Previous()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.SetText(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Text.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.BreakIterator.Text.set(Java.Text.ICharacterIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.GetMaxExpansion(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.Offset.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.Previous()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.PrimaryOrder(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.SecondaryOrder(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.SetText(Android.Icu.Text.UCharacterIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.SetText(Java.Text.ICharacterIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.SetText(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationElementIterator.TertiaryOrder(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey..ctor(System.String, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey.CompareTo(Android.Icu.Text.CollationKey)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey.Equals(Android.Icu.Text.CollationKey)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey.GetBound(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey.Merge(Android.Icu.Text.CollationKey)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey.ToByteArray()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CollationKey.BoundMode' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Compare(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Compare(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Decomposition.set(Android.Icu.Text.CollatorDecompositionMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Equals(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetAvailableULocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetCollationKey(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetDisplayName(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetDisplayName(Android.Icu.Util.ULocale, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetDisplayName(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetDisplayName(Java.Util.Locale, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetEquivalentReorderCodes(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetFunctionalEquivalent(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetFunctionalEquivalent(System.String, Android.Icu.Util.ULocale, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetKeywords()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetKeywordValues(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetKeywordValuesForLocale(System.String, Android.Icu.Util.ULocale, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.GetReorderCodes()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.SetMaxVariable(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.SetReorderCodes(System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Strength.set(Android.Icu.Text.CollationStrength)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.UCAVersion.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.VariableTop.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.Version.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Collator.ReorderCodes' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CompactDecimalFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CompactDecimalFormat.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.CompactDecimalFormat.CompactStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CompactDecimalFormat.GetInstance(Java.Util.Locale, Android.Icu.Text.CompactDecimalFormat.CompactStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CompactDecimalFormat.CompactStyle' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CompactDecimalFormat.CompactStyle.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CompactDecimalFormat.CompactStyle.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo.GetCurrencyPluralPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo.Locale.set(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo.SetCurrencyPluralPattern(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.CurrencyPluralInfo.SetPluralRules(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Calendar.set(Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.CalendarLenient.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Format(Android.Icu.Util.Calendar, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Format(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Format(Java.Util.Date, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetBooleanAttribute(Android.Icu.Text.DateFormat.BooleanAttribute)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetContext(Android.Icu.Text.DisplayContext.Type)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateInstance(Android.Icu.Text.DateFormatStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateInstance(Android.Icu.Text.DateFormatStyle, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateInstance(Android.Icu.Text.DateFormatStyle, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateTimeInstance(Android.Icu.Text.DateFormatStyle, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateTimeInstance(Android.Icu.Text.DateFormatStyle, System.Int32, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateTimeInstance(Android.Icu.Text.DateFormatStyle, System.Int32, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateTimeInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateTimeInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle, System.Int32, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetDateTimeInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle, System.Int32, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetInstance(Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetInstance(Android.Icu.Util.Calendar, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetInstanceForSkeleton(Android.Icu.Util.Calendar, System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetInstanceForSkeleton(Android.Icu.Util.Calendar, System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetInstanceForSkeleton(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetInstanceForSkeleton(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetInstanceForSkeleton(System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetPatternInstance(Android.Icu.Util.Calendar, System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetPatternInstance(Android.Icu.Util.Calendar, System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetPatternInstance(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetPatternInstance(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetPatternInstance(System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetTimeInstance(Android.Icu.Text.DateFormatStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetTimeInstance(Android.Icu.Text.DateFormatStyle, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetTimeInstance(Android.Icu.Text.DateFormatStyle, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetTimeInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetTimeInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.GetTimeInstance(Android.Icu.Util.Calendar, Android.Icu.Text.DateFormatStyle, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Lenient.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.NumberFormat.set(Android.Icu.Text.NumberFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Parse(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Parse(System.String, Android.Icu.Util.Calendar, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Parse(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.SetBooleanAttribute(Android.Icu.Text.DateFormat.BooleanAttribute, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.SetContext(Android.Icu.Text.DisplayContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.TimeZone.set(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.BooleanAttribute' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.BooleanAttribute.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.BooleanAttribute.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Field' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Field..ctor(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormat.Field.OfCalendarField(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Android.Icu.Util.Calendar, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Android.Icu.Util.Calendar, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Java.Lang.Class, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Java.Lang.Class, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Java.Util.ResourceBundle, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols..ctor(Java.Util.ResourceBundle, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetAmPmStrings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetEraNames()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetEras()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetMonths()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetMonths(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetQuarters(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetShortMonths()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetShortWeekdays()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetWeekdays()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetWeekdays(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetYearNames(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetZodiacNames(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.GetZoneStrings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.InitializeData(Android.Icu.Util.ULocale, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.LocalPatternChars.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetAmPmStrings(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetEraNames(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetEras(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetMonths(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetMonths(System.String[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetQuarters(System.String[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetShortMonths(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetShortWeekdays(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetWeekdays(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetWeekdays(System.String[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetYearNames(System.String[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetZodiacNames(System.String[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateFormatSymbols.SetZoneStrings(System.String[][])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.DateIntervalInfo.set(Android.Icu.Text.DateIntervalInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.Format(Android.Icu.Util.Calendar, Android.Icu.Util.Calendar, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.Format(Android.Icu.Util.DateInterval, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.GetInstance(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.GetInstance(System.String, Android.Icu.Text.DateIntervalInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.GetInstance(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.GetInstance(System.String, Android.Icu.Util.ULocale, Android.Icu.Text.DateIntervalInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.GetInstance(System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.GetInstance(System.String, Java.Util.Locale, Android.Icu.Text.DateIntervalInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalFormat.TimeZone.set(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.FallbackIntervalPattern.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.GetIntervalPattern(System.String, Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.SetIntervalPattern(System.String, Android.Icu.Util.CalendarField, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.PatternInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.PatternInfo..ctor(System.String, System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateIntervalInfo.PatternInfo.FirstDateInPtnIsLaterDate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.AddPattern(System.String, System.Boolean, Android.Icu.Text.DateTimePatternGenerator.PatternInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.DateTimeFormat.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.Decimal.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetAppendItemFormat(Android.Icu.Text.DateTimePatternField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetAppendItemName(Android.Icu.Text.DateTimePatternField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetBaseSkeleton(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetBaseSkeletons(System.Collections.Generic.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetBestPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetBestPattern(System.String, Android.Icu.Text.DateTimePatternMatchOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetSkeleton(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.GetSkeletons(System.Collections.Generic.IDictionary)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.ReplaceFieldTypes(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.ReplaceFieldTypes(System.String, System.String, Android.Icu.Text.DateTimePatternMatchOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.SetAppendItemFormat(Android.Icu.Text.DateTimePatternField, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.SetAppendItemName(Android.Icu.Text.DateTimePatternField, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.PatternInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DateTimePatternGenerator.PatternInfo..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat..ctor(System.String, Android.Icu.Text.DecimalFormatSymbols)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat..ctor(System.String, Android.Icu.Text.DecimalFormatSymbols, Android.Icu.Text.CurrencyPluralInfo, Android.Icu.Text.NumberFormatStyles)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ApplyLocalizedPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ApplyPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.AreSignificantDigitsUsed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.CurrencyPluralInfo.set(Android.Icu.Text.CurrencyPluralInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.CurrencyUsage.set(Android.Icu.Util.Currency.CurrencyUsage)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.DecimalFormatSymbols.set(Android.Icu.Text.DecimalFormatSymbols)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.DecimalPatternMatchRequired.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.DecimalSeparatorAlwaysShown.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ExponentSignAlwaysShown.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.Format(Android.Icu.Math.BigDecimal, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.Format(Java.Math.BigDecimal, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.Format(Java.Math.BigInteger, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.Format(System.Double, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.Format(System.Int64, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.FormatWidth.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.GroupingSize.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.MathContext.set(Java.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.MathContextICU.set(Android.Icu.Math.MathContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.MaximumSignificantDigits.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.MinimumExponentDigits.set(System.SByte)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.MinimumSignificantDigits.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.Multiplier.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.NegativePrefix.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.NegativeSuffix.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.PadCharacter.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.PadPosition.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.Parse(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ParseBigDecimal.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ParseMaxDigits.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.PositivePrefix.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.PositiveSuffix.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.RoundingIncrement.set(Java.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ScientificNotation.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.SecondaryGroupingSize.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.SetRoundingIncrement(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.SetRoundingIncrement(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.SetSignificantDigitsUsed(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ToLocalizedPattern()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormat.ToPattern()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.Currency.set(Android.Icu.Util.Currency)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.CurrencySymbol.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.DecimalSeparator.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.Digit.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.ExponentMultiplicationSign.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.ExponentSeparator.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.GetDigits()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.GetPatternForCurrencySpacing(Android.Icu.Text.CurrencySpacing, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.GroupingSeparator.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.Infinity.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.InternationalCurrencySymbol.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.MinusSign.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.MonetaryDecimalSeparator.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.MonetaryGroupingSeparator.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.NaN.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.PadEscape.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.PatternSeparator.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.Percent.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.PerMill.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.PlusSign.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.SetPatternForCurrencySpacing(Android.Icu.Text.CurrencySpacing, System.Boolean, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.SignificantDigit.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DecimalFormatSymbols.ZeroDigit.set(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext.InvokeType()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext.Value()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext.Type' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext.Type.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.DisplayContext.Type.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.GetUTS46Instance(Android.Icu.Text.IDNAOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.LabelToASCII(Java.Lang.ICharSequence, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.LabelToASCII(System.String, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.LabelToUnicode(Java.Lang.ICharSequence, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.LabelToUnicode(System.String, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.NameToASCII(Java.Lang.ICharSequence, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.NameToASCII(System.String, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.NameToUnicode(Java.Lang.ICharSequence, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.NameToUnicode(System.String, Java.Lang.StringBuilder, Android.Icu.Text.IDNA.Info)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.Error' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.Error.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.Error.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.Info' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IDNA.Info..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.Char32At(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.CharAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.Copy(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.GetChars(System.Int32, System.Int32, System.Char[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.HasMetaData.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.Length()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.Replace(System.Int32, System.Int32, System.Char[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IReplaceable.Replace(System.Int32, System.Int32, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.ISymbolTable.Lookup(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.ISymbolTable.LookupMatcher(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.ISymbolTable.ParseReference(System.String, Java.Text.ParsePosition, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IUnicodeMatcher.AddMatchSetTo(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IUnicodeMatcher.Matches(Android.Icu.Text.IReplaceable, System.Int32[], System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IUnicodeMatcher.MatchesIndexValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.IUnicodeMatcher.ToPattern(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.GetContext(Android.Icu.Text.DisplayContext.Type)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.GetDialectHandling()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.DisplayContext[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.LocaleDisplayNames.DialectHandling)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.GetInstance(Java.Util.Locale, Android.Icu.Text.DisplayContext[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.KeyDisplayName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.KeyValueDisplayName(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.LanguageDisplayName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.Locale.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.LocaleDisplayName(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.LocaleDisplayName(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.LocaleDisplayName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.RegionDisplayName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.ScriptDisplayName(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.ScriptDisplayName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.VariantDisplayName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.DialectHandling' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.DialectHandling.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.LocaleDisplayNames.DialectHandling.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.Equals(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.FormatMeasures(Android.Icu.Util.Measure[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.FormatMeasures(Java.Lang.StringBuilder, Java.Text.FieldPosition, Android.Icu.Util.Measure[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.GetCurrencyFormat(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.GetCurrencyFormat(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.GetHashCode()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.MeasureFormat.FormatWidth)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.MeasureFormat.FormatWidth, Android.Icu.Text.NumberFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.GetInstance(Java.Util.Locale, Android.Icu.Text.MeasureFormat.FormatWidth)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.GetInstance(Java.Util.Locale, Android.Icu.Text.MeasureFormat.FormatWidth, Android.Icu.Text.NumberFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.FormatWidth' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.FormatWidth.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MeasureFormat.FormatWidth.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat..ctor(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat..ctor(System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.ApplyPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.ApplyPattern(System.String, Android.Icu.Text.MessagePattern.ApostropheMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.AutoQuoteApostrophe(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Format(Java.Lang.Object[], Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Format(System.Collections.Generic.IDictionary, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Format(System.String, Java.Lang.Object[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Format(System.String, System.Collections.Generic.IDictionary)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.GetFormatByArgumentName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.GetFormats()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.GetFormatsByArgumentIndex()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Locale.set(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Parse(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Parse(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.ParseToMap(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.ParseToMap(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.SetFormat(System.Int32, Java.Text._Format)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.SetFormatByArgumentIndex(System.Int32, Java.Text._Format)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.SetFormatByArgumentName(System.String, Java.Text._Format)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.SetFormats(Java.Text._Format[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.SetFormatsByArgumentIndex(Java.Text._Format[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.SetFormatsByArgumentName(System.Collections.Generic.IDictionary)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.SetLocale(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.ToPattern()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.UsesNamedArguments()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Field' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessageFormat.Field..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern..ctor(Android.Icu.Text.MessagePattern.ApostropheMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.AutoQuoteApostropheDeep()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Clear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ClearPatternAndSetApostropheMode(Android.Icu.Text.MessagePattern.ApostropheMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.CountParts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetApostropheMode()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetLimitPartIndex(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetNumericValue(Android.Icu.Text.MessagePattern.Part)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetPart(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetPartType(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetPatternIndex(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetPluralOffset(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.GetSubstring(Android.Icu.Text.MessagePattern.Part)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Parse(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ParseChoiceStyle(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ParsePluralStyle(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ParseSelectStyle(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.PartSubstringMatches(Android.Icu.Text.MessagePattern.Part, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ValidateArgumentName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ApostropheMode' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ApostropheMode.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ApostropheMode.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ArgType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ArgType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.ArgType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Part' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Part.GetType()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Part.Type' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Part.Type.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.MessagePattern.Part.Type.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer.Compare(System.Char[], System.Char[], Android.Icu.Text.NormalizerCompareOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer.Compare(System.Char[], System.Int32, System.Int32, System.Char[], System.Int32, System.Int32, Android.Icu.Text.NormalizerCompareOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer.Compare(System.Int32, System.Int32, Android.Icu.Text.NormalizerCompareOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer.Compare(System.Int32, System.String, Android.Icu.Text.NormalizerCompareOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer.Compare(System.String, System.String, Android.Icu.Text.NormalizerCompareOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer.QuickCheckResult' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Append(Java.Lang.StringBuilder, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Append(Java.Lang.StringBuilder, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.ComposePair(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.GetCombiningClass(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.GetDecomposition(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.GetInstance(System.IO.Stream, System.String, Android.Icu.Text.Normalizer2.Mode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.GetRawDecomposition(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.HasBoundaryAfter(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.HasBoundaryBefore(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.IsInert(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.IsNormalized(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.IsNormalized(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Normalize(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Normalize(Java.Lang.ICharSequence, Java.Lang.IAppendable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Normalize(Java.Lang.ICharSequence, Java.Lang.StringBuilder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Normalize(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Normalize(System.String, Java.Lang.IAppendable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Normalize(System.String, Java.Lang.StringBuilder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.NormalizeSecondAndAppend(Java.Lang.StringBuilder, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.NormalizeSecondAndAppend(Java.Lang.StringBuilder, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.QuickCheck(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.QuickCheck(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.SpanQuickCheckYes(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.SpanQuickCheckYes(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Mode' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Mode.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.Normalizer2.Mode.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Currency.set(Android.Icu.Util.Currency)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Android.Icu.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Android.Icu.Math.BigDecimal, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Android.Icu.Util.CurrencyAmount)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Android.Icu.Util.CurrencyAmount, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Java.Math.BigDecimal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Java.Math.BigDecimal, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Java.Math.BigInteger)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(Java.Math.BigInteger, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(System.Double, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Format(System.Int64, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetContext(Android.Icu.Text.DisplayContext.Type)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetCurrencyInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetCurrencyInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetInstance(Android.Icu.Text.NumberFormatStyles)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.NumberFormatStyles)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetInstance(Java.Util.Locale, Android.Icu.Text.NumberFormatStyles)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetIntegerInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetIntegerInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetNumberInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetNumberInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetPattern(Android.Icu.Util.ULocale, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetPercentInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetPercentInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetScientificInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GetScientificInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.GroupingUsed.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.MaximumFractionDigits.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.MaximumIntegerDigits.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.MinimumFractionDigits.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.MinimumIntegerDigits.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Parse(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Parse(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.ParseCurrency(Java.Lang.ICharSequence, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.ParseCurrency(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.ParseIntegerOnly.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.ParseStrict.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.RoundingMode.set(Android.Icu.Math.RoundOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.SetContext(Android.Icu.Text.DisplayContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Field' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberFormat.Field..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem.GetAvailableNames()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem.GetInstance(System.Int32, System.Boolean, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem.GetInstanceByName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.NumberingSystem.IsValidDigitString(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Text.PluralRules)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Text.PluralRules, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Util.ULocale, Android.Icu.Text.PluralRules)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Util.ULocale, Android.Icu.Text.PluralRules, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Util.ULocale, Android.Icu.Text.PluralRules.PluralType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Util.ULocale, Android.Icu.Text.PluralRules.PluralType, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Android.Icu.Util.ULocale, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Java.Util.Locale, Android.Icu.Text.PluralRules)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(Java.Util.Locale, Android.Icu.Text.PluralRules.PluralType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.ApplyPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.Equals(Android.Icu.Text.PluralFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.Format(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.Parse(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.SetNumberFormat(Android.Icu.Text.NumberFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralFormat.ToPattern()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.CreateRules(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.Equals(Android.Icu.Text.PluralRules)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.ForLocale(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.ForLocale(Android.Icu.Util.ULocale, Android.Icu.Text.PluralRules.PluralType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.ForLocale(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.ForLocale(Java.Util.Locale, Android.Icu.Text.PluralRules.PluralType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.GetAllKeywordValues(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.GetSamples(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.GetUniqueKeywordValue(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.ParseDescription(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.Select(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.PluralType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.PluralType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.PluralRules.PluralType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.CombineDateAndTime(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Format(Android.Icu.Text.RelativeDateTimeFormatter.Direction, Android.Icu.Text.RelativeDateTimeFormatter.AbsoluteUnit)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Format(System.Double, Android.Icu.Text.RelativeDateTimeFormatter.Direction, Android.Icu.Text.RelativeDateTimeFormatter.RelativeUnit)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.NumberFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.GetInstance(Android.Icu.Util.ULocale, Android.Icu.Text.NumberFormat, Android.Icu.Text.RelativeDateTimeFormatter.Style, Android.Icu.Text.DisplayContext)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.GetInstance(Java.Util.Locale, Android.Icu.Text.NumberFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.AbsoluteUnit' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.AbsoluteUnit.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.AbsoluteUnit.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Direction' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Direction.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Direction.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.RelativeUnit' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.RelativeUnit.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.RelativeUnit.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Style' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Style.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RelativeDateTimeFormatter.Style.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.AlternateHandlingShifted.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.CaseLevel.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.Compare(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.FrenchCollation.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.GetCollationElementIterator(Android.Icu.Text.UCharacterIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.GetCollationElementIterator(Java.Text.ICharacterIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.GetCollationElementIterator(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.GetCollationKey(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.GetContractionsAndExpansions(Android.Icu.Text.UnicodeSet, Android.Icu.Text.UnicodeSet, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.GetRules(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.LowerCaseFirst.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.NumericCollation.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.SetAlternateHandlingDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.SetCaseFirstDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.SetCaseLevelDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.SetDecompositionDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.SetFrenchCollationDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.SetNumericCollationDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.SetStrengthDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.RuleBasedCollator.UpperCaseFirst.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator..ctor(Java.Text.ICharacterIterator, Android.Icu.Text.BreakIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.BreakIterator.set(Android.Icu.Text.BreakIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.First()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Following(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.GetElementComparisonType()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.HandleNext(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.HandlePrevious(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Index.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Last()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Overlapping.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Preceding(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Previous()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.SetElementComparisonType(Android.Icu.Text.SearchIterator.ElementComparisonType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.SetIndex(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.SetMatchLength(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.Target.set(Java.Text.ICharacterIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.ElementComparisonType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.ElementComparisonType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SearchIterator.ElementComparisonType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SelectFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SelectFormat..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SelectFormat.ApplyPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SelectFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SelectFormat.Format(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SelectFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SelectFormat.ToPattern()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat..ctor(System.String, Android.Icu.Text.DateFormatSymbols)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat..ctor(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat..ctor(System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat..ctor(System.String, System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.ApplyLocalizedPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.ApplyPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.DateFormatSymbols.set(Android.Icu.Text.DateFormatSymbols)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.Format(Android.Icu.Util.Calendar, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.Get2DigitYearStart()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.GetNumberFormat(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.MatchQuarterString(System.String, System.Int32, System.Int32, System.String[], Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.MatchString(System.String, System.Int32, System.Int32, System.String[], Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.Parse(System.String, Android.Icu.Util.Calendar, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.PatternCharToDateFormatField(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.Set2DigitYearStart(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.SetNumberFormat(System.String, Android.Icu.Text.NumberFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.SubFormat(System.Char, System.Int32, System.Int32, Java.Text.FieldPosition, Android.Icu.Text.DateFormatSymbols, Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.SubParse(System.String, System.Int32, System.Char, System.Int32, System.Boolean, System.Boolean, System.Boolean[], Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.TimeZoneFormat.set(Android.Icu.Text.TimeZoneFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.ToLocalizedPattern()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.ToPattern()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SimpleDateFormat.ZeroPaddingNumber(System.Int64, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringPrepParseException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringPrepParseException..ctor(System.String, Android.Icu.Text.StringPrepParseExceptionError)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringPrepParseException..ctor(System.String, Android.Icu.Text.StringPrepParseExceptionError, System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringPrepParseException..ctor(System.String, Android.Icu.Text.StringPrepParseExceptionError, System.String, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch..ctor(System.String, Java.Text.ICharacterIterator, Android.Icu.Text.RuleBasedCollator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch..ctor(System.String, Java.Text.ICharacterIterator, Android.Icu.Text.RuleBasedCollator, Android.Icu.Text.BreakIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch..ctor(System.String, Java.Text.ICharacterIterator, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch..ctor(System.String, Java.Text.ICharacterIterator, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch..ctor(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch.Canonical.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch.Collator.set(Android.Icu.Text.RuleBasedCollator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch.HandleNext(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch.HandlePrevious(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.StringSearch.Pattern.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.SymbolTable' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Format(Java.Lang.Object, Java.Lang.StringBuffer, Java.Text.FieldPosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Format(Android.Icu.Text.TimeZoneFormat.Style, Android.Icu.Util.TimeZone, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Format(Android.Icu.Text.TimeZoneFormat.Style, Android.Icu.Util.TimeZone, System.Int64, Android.Icu.Util.Output)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.FormatOffsetISO8601Basic(System.Int32, System.Boolean, System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.FormatOffsetISO8601Extended(System.Int32, System.Boolean, System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.FormatOffsetLocalizedGMT(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.FormatOffsetShortLocalizedGMT(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.GetGMTOffsetPattern(Android.Icu.Text.TimeZoneFormat.GMTOffsetPatternType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Parse(Android.Icu.Text.TimeZoneFormat.Style, System.String, Java.Text.ParsePosition, Android.Icu.Util.Output)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Parse(Android.Icu.Text.TimeZoneFormat.Style, System.String, Java.Text.ParsePosition, Java.Util.EnumSet, Android.Icu.Util.Output)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Parse(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Parse(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.ParseObject(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.ParseOffsetISO8601(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.ParseOffsetLocalizedGMT(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.ParseOffsetShortLocalizedGMT(System.String, Java.Text.ParsePosition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.SetDefaultParseOptions(Java.Util.EnumSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.SetGMTOffsetDigits(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.SetGMTOffsetPattern(Android.Icu.Text.TimeZoneFormat.GMTOffsetPatternType, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.SetGMTPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.SetGMTZeroFormat(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.SetTimeZoneNames(Android.Icu.Text.TimeZoneNames)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.GMTOffsetPatternType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.GMTOffsetPatternType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.GMTOffsetPatternType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.ParseOption' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.ParseOption.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.ParseOption.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Style' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Style.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.Style.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.TimeType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.TimeType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneFormat.TimeType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.AvailableMetaZoneIDs.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetAvailableMetaZoneIDs(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetDisplayName(System.String, Android.Icu.Text.TimeZoneNames.NameType, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetExemplarLocationName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetMetaZoneDisplayName(System.String, Android.Icu.Text.TimeZoneNames.NameType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetMetaZoneID(System.String, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetReferenceZoneID(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetTimeZoneDisplayName(System.String, Android.Icu.Text.TimeZoneNames.NameType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.GetTZDBInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.NameType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.NameType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.TimeZoneNames.NameType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.Current()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.CurrentCodePoint()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetInstance(Android.Icu.Text.IReplaceable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetInstance(Java.Lang.StringBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetInstance(Java.Text.ICharacterIterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetInstance(System.Char[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetInstance(System.Char[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetInstance(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetText(System.Char[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.GetText(System.Char[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.Index.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.Index.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.Length.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.MoveCodePointIndex(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.MoveIndex(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.NextCodePoint()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.Previous()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.PreviousCodePoint()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.SetToLimit()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UCharacterIterator.SetToStart()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UFormat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UFormat..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeFilter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeFilter.AddMatchSetTo(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeFilter.Contains(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeFilter.Matches(Android.Icu.Text.IReplaceable, System.Int32[], System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeFilter.MatchesIndexValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeFilter.ToPattern(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeMatcher' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(System.String, Android.Icu.Text.UnicodeSetOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(System.String, Java.Text.ParsePosition, Android.Icu.Text.ISymbolTable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(System.String, Java.Text.ParsePosition, Android.Icu.Text.ISymbolTable, Android.Icu.Text.UnicodeSetOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet..ctor(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Add(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Add(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Add(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Add(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Add(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.AddAll(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.AddAll(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.AddAll(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.AddAll(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.AddAll(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.AddAllTo(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.AddMatchSetTo(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ApplyIntPropertyValue(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ApplyPattern(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ApplyPattern(System.String, Android.Icu.Text.UnicodeSetOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ApplyPattern(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ApplyPropertyAlias(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ApplyPropertyAlias(System.String, System.String, Android.Icu.Text.ISymbolTable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.CharAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Clear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.CloseOver(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Compact()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.CompareTo(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.CompareTo(Android.Icu.Text.UnicodeSet, Android.Icu.Text.UnicodeSet.ComparisonStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.CompareTo(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Complement()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Complement(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Complement(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Complement(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Complement(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ComplementAll(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ComplementAll(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ComplementAll(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Contains(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Contains(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Contains(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Contains(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsAll(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsAll(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsAll(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsNone(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsNone(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsNone(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsNone(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsNone(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsSome(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsSome(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsSome(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsSome(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ContainsSome(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.From(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.From(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.FromAll(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.FromAll(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.GetRangeEnd(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.GetRangeStart(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.IndexOf(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Iterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.MatchesIndexValue(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Ranges()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Remove(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Remove(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Remove(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Remove(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RemoveAll(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RemoveAll(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RemoveAll(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RemoveAll(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RemoveAllStrings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Retain(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Retain(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Retain(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Retain(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RetainAll(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RetainAll(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RetainAll(Java.Lang.IIterable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.RetainAll(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Set(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Set(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Size()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Span(Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Span(Java.Lang.ICharSequence, System.Int32, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Span(System.String, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Span(System.String, System.Int32, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.SpanBack(Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.SpanBack(Java.Lang.ICharSequence, System.Int32, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.SpanBack(System.String, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.SpanBack(System.String, System.Int32, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.Strings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ToPattern(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet._generatePattern(Java.Lang.StringBuffer, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet._generatePattern(Java.Lang.StringBuffer, System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ComparisonStyle' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ComparisonStyle.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.ComparisonStyle.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.EntryRange' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.SpanCondition' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.SpanCondition.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSet.SpanCondition.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetIterator..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetIterator..ctor(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetIterator.NextRange()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetIterator.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetIterator.Reset(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner..ctor(Android.Icu.Text.UnicodeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountIn(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountIn(Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSetSpanner.CountMethod)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountIn(Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSetSpanner.CountMethod, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountIn(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountIn(System.String, Android.Icu.Text.UnicodeSetSpanner.CountMethod)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountIn(System.String, Android.Icu.Text.UnicodeSetSpanner.CountMethod, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.DeleteFrom(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.DeleteFrom(Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.DeleteFrom(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.DeleteFrom(System.String, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.ReplaceFrom(Java.Lang.ICharSequence, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.ReplaceFrom(Java.Lang.ICharSequence, Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSetSpanner.CountMethod)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.ReplaceFrom(Java.Lang.ICharSequence, Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSetSpanner.CountMethod, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.ReplaceFrom(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.ReplaceFrom(System.String, System.String, Android.Icu.Text.UnicodeSetSpanner.CountMethod)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.ReplaceFrom(System.String, System.String, Android.Icu.Text.UnicodeSetSpanner.CountMethod, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.Trim(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.Trim(System.String, Android.Icu.Text.UnicodeSetSpanner.TrimOption)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.Trim(System.String, Android.Icu.Text.UnicodeSetSpanner.TrimOption, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.TrimFormatted(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.TrimFormatted(Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSetSpanner.TrimOption)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.TrimFormatted(Java.Lang.ICharSequence, Android.Icu.Text.UnicodeSetSpanner.TrimOption, Android.Icu.Text.UnicodeSet.SpanCondition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountMethod' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountMethod.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.CountMethod.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.TrimOption' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.TrimOption.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Text.UnicodeSetSpanner.TrimOption.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.BuddhistCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Add(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.After(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Before(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Clear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Clear(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.CompareTo(Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Complete()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ComputeFields()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ComputeGregorianFields(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ComputeGregorianMonthStart(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ComputeJulianDay()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ComputeMillisInDay()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ComputeTime()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ComputeZoneOffset(System.Int64, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.FieldDifference(Java.Util.Date, Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.FieldName(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.FirstDayOfWeek.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.FloorDivide(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.FloorDivide(System.Int32, System.Int32, System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.FloorDivide(System.Int64, System.Int32, System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.FloorDivide(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Get(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetActualMaximum(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetActualMinimum(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetDateTimeFormat(Android.Icu.Text.DateFormatStyle, System.Int32, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetDateTimeFormat(Android.Icu.Text.DateFormatStyle, System.Int32, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetDisplayName(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetDisplayName(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetFieldResolutionTable()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetGreatestMinimum(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetInstance(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetInstance(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetInstance(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetKeywordValuesForLocale(System.String, Android.Icu.Util.ULocale, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetLeastMaximum(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetLimit(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetMaximum(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetMinimum(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetStamp(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetWeekData()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GetWeekDataForRegion(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GregorianMonthLength(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.GregorianPreviousMonthLength(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleComputeFields(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleComputeJulianDay(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleComputeMonthStart(System.Int32, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleCreateFields()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleGetDateFormat(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleGetDateFormat(System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleGetDateFormat(System.String, System.String, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleGetExtendedYear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleGetLimit(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleGetMonthLength(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.HandleGetYearLength(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.InternalGet(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.InternalGet(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.InternalGetTimeInMillis()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.InternalSet(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.InvokeIsWeekend(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.IsEquivalentTo(Android.Icu.Util.Calendar)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.IsGregorianLeapYear(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.IsSet(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.JulianDayToDayOfWeek(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.JulianDayToMillis(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Lenient.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.MillisToJulianDay(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.MinimalDaysInFirstWeek.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.NewerField(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.NewestStamp(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.PinField(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.PrepareGetActual(Android.Icu.Util.CalendarField, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.RepeatedWallTimeOption.set(Android.Icu.Util.WalltimeOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ResolveFields(System.Int32[][][])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Roll(Android.Icu.Util.CalendarField, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Roll(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Set(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Set(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Set(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Set(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.SetWeekData(Android.Icu.Util.Calendar.WeekData)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.SkippedWallTimeOption.set(Android.Icu.Util.WalltimeOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.Time.set(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.TimeInMillis.set(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.TimeZone.set(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ValidateField(Android.Icu.Util.CalendarField)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ValidateField(Android.Icu.Util.CalendarField, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.ValidateFields()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.WeekNumber(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.WeekNumber(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.WeekData' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Calendar.WeekData..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CECalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar.HandleComputeMonthStart(System.Int32, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar.HandleGetDateFormat(System.String, System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar.HandleGetExtendedYear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ChineseCalendar.HandleGetLimit(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CopticCalendar.HandleGetExtendedYear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetAvailableCurrencyCodes(Android.Icu.Util.ULocale, Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetAvailableCurrencyCodes(Java.Util.Locale, Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetAvailableULocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetDefaultFractionDigits(Android.Icu.Util.Currency.CurrencyUsage)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetDisplayName(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetInstance(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetInstance(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetInstance(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetKeywordValuesForLocale(System.String, Android.Icu.Util.ULocale, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetName(Android.Icu.Util.ULocale, Android.Icu.Util.CurrencyNameStyle, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetName(Android.Icu.Util.ULocale, Android.Icu.Util.CurrencyNameStyle, System.String, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetName(Java.Util.Locale, Android.Icu.Util.CurrencyNameStyle, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetName(Java.Util.Locale, Android.Icu.Util.CurrencyNameStyle, System.String, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetRoundingIncrement(Android.Icu.Util.Currency.CurrencyUsage)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetSymbol(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.GetSymbol(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.IsAvailable(System.String, Java.Util.Date, Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.CurrencyUsage' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.CurrencyUsage.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Currency.CurrencyUsage.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CurrencyAmount' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CurrencyAmount..ctor(Java.Lang.Number, Android.Icu.Util.Currency)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.CurrencyAmount..ctor(System.Double, Android.Icu.Util.Currency)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.DateInterval' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.DateInterval..ctor(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar.GregorianChange.set(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar.HandleComputeMonthStart(System.Int32, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar.HandleGetExtendedYear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar.HandleGetLimit(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.GregorianCalendar.IsLeapYear(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar.HandleComputeMonthStart(System.Int32, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar.HandleGetExtendedYear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.HebrewCalendar.HandleGetLimit(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ICUUncheckedIOException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ICUUncheckedIOException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ICUUncheckedIOException..ctor(Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ICUUncheckedIOException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ICUUncheckedIOException..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IFreezable.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IFreezable.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IFreezable.IsFrozen.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar.HandleComputeMonthStart(System.Int32, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar.HandleGetExtendedYear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IndianCalendar.HandleGetLimit(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IRangeValueIterator.Next(Android.Icu.Util.RangeValueIteratorElement)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IRangeValueIterator.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.GetCalculationType()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.HandleComputeMonthStart(System.Int32, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.HandleGetExtendedYear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.HandleGetLimit(Android.Icu.Util.CalendarField, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.SetCalculationType(Android.Icu.Util.IslamicCalendar.CalculationType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.CalculationType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.CalculationType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IslamicCalendar.CalculationType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IValueIterator.Next(Android.Icu.Util.ValueIteratorElement)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IValueIterator.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.IValueIterator.SetRange(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.JapaneseCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Measure' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Measure..ctor(Java.Lang.Number, Android.Icu.Util.MeasureUnit)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.MeasureUnit' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.MeasureUnit.GetAvailable(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Output' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Output..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.Output..ctor(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.RangeValueIteratorElement' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.RangeValueIteratorElement..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(Android.Icu.Util.TimeZone, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(Android.Icu.Util.TimeZone, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TaiwanCalendar..ctor(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeUnit' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeUnit.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.CloneAsThawed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.CountEquivalentIDs(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.Freeze()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetAvailableIDs()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetAvailableIDs(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetAvailableIDs(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetAvailableIDs(Android.Icu.Util.TimeZone.SystemTimeZoneType, System.String, Java.Lang.Integer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetCanonicalID(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetCanonicalID(System.String, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetDisplayName(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetDisplayName(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetDisplayName(System.Boolean, Android.Icu.Util.TimeZoneNameStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetDisplayName(System.Boolean, Android.Icu.Util.TimeZoneNameStyle, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetDisplayName(System.Boolean, Android.Icu.Util.TimeZoneNameStyle, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetEquivalentID(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetFrozenTimeZone(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetIDForWindowsID(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetOffset(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetOffset(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetOffset(System.Int64, System.Boolean, System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetRegion(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetTimeZone(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetTimeZone(System.String, Android.Icu.Util.TimeZoneType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.GetWindowsID(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.HasSameRules(Android.Icu.Util.TimeZone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.ID.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.InDaylightTime(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.ObservesDaylightTime()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.RawOffset.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.RawOffset.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.UseDaylightTime()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.SystemTimeZoneType' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.SystemTimeZoneType.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.TimeZone.SystemTimeZoneType.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale..ctor(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale..ctor(System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.AcceptLanguage(Android.Icu.Util.ULocale[], Android.Icu.Util.ULocale[], System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.AcceptLanguage(Android.Icu.Util.ULocale[], System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.AcceptLanguage(System.String, Android.Icu.Util.ULocale[], System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.AcceptLanguage(System.String, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.AddLikelySubtags(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Canonicalize(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.CompareTo(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.CreateCanonical(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ForLanguageTag(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ForLocale(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetAvailableLocales()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetBaseName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetCountry(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDefault(Android.Icu.Util.ULocale.Category)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayCountry(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayCountry(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayCountry(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayKeyword(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayKeyword(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayKeyword(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayKeywordValue(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayKeywordValue(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayKeywordValue(System.String, System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayKeywordValue(System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayLanguage(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayLanguage(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayLanguage(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayLanguageWithDialect(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayLanguageWithDialect(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayLanguageWithDialect(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayName(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayName(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayName(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayNameWithDialect(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayNameWithDialect(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayNameWithDialect(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayScript(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayScript(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayScript(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayVariant(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayVariant(System.String, Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetDisplayVariant(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetExtension(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetFallback(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetISO3Country(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetISO3Language(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetISOCountries()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetISOLanguages()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetKeywords(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetKeywordValue(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetKeywordValue(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetLanguage(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetScript(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetUnicodeLocaleType(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.GetVariant(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.MinimizeSubtags(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.SetKeywordValue(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.SetKeywordValue(System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ToLanguageTag()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ToLegacyKey(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ToLegacyType(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ToLocale()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ToUnicodeLocaleKey(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.ToUnicodeLocaleType(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.AddUnicodeLocaleAttribute(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.Clear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.ClearExtensions()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.RemoveUnicodeLocaleAttribute(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetExtension(System.Char, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetLanguage(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetLanguageTag(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetLocale(Android.Icu.Util.ULocale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetRegion(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetScript(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetUnicodeLocaleKeyword(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Builder.SetVariant(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Category' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Category.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ULocale.Category.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ValueIteratorElement' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.ValueIteratorElement..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.VersionInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.VersionInfo.CompareTo(Android.Icu.Util.VersionInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.VersionInfo.GetInstance(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.VersionInfo.GetInstance(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.VersionInfo.GetInstance(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.VersionInfo.GetInstance(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Icu.Util.VersionInfo.GetInstance(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssClock' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssClock.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssClock.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurement' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurement.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurement.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurementsEvent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurementsEvent.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurementsEvent.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurementsEvent.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurementsEvent.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurementsEvent.Callback.OnGnssMeasurementsReceived(Android.Locations.GnssMeasurementsEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssMeasurementsEvent.Callback.OnStatusChanged(Android.Locations.GnssMeasurementCallbackStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage.GetData()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage.Callback.OnGnssNavigationMessageReceived(Android.Locations.GnssNavigationMessage)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssNavigationMessage.Callback.OnStatusChanged(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.GetAzimuthDegrees(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.GetCn0DbHz(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.GetConstellationType(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.GetElevationDegrees(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.GetSvid(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.HasAlmanacData(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.HasEphemerisData(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.UsedInFix(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.Callback.OnFirstFix(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.Callback.OnSatelliteStatusChanged(Android.Locations.GnssStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.Callback.OnStarted()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.GnssStatus.Callback.OnStopped()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsSatellite' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsSatellite.UsedInFix()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsStatus' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsStatus.Create(Android.Locations.GnssStatus, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsStatus.IListener' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsStatus.IListener.OnGpsStatusChanged(Android.Locations.GpsEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsStatus.INmeaListener' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.GpsStatus.INmeaListener.OnNmeaReceived(System.Int64, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.IOnNmeaMessageListener.OnNmeaMessage(System.String, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.AddGpsStatusListener(Android.Locations.GpsStatus.IListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.AddNmeaListener(Android.Locations.IOnNmeaMessageListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.AddNmeaListener(Android.Locations.IOnNmeaMessageListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.AddNmeaListener(Android.Locations.GpsStatus.INmeaListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.GetGpsStatus(Android.Locations.GpsStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RegisterGnssMeasurementsCallback(Android.Locations.GnssMeasurementsEvent.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RegisterGnssMeasurementsCallback(Android.Locations.GnssMeasurementsEvent.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RegisterGnssNavigationMessageCallback(Android.Locations.GnssNavigationMessage.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RegisterGnssNavigationMessageCallback(Android.Locations.GnssNavigationMessage.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RegisterGnssStatusCallback(Android.Locations.GnssStatus.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RegisterGnssStatusCallback(Android.Locations.GnssStatus.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RemoveGpsStatusListener(Android.Locations.GpsStatus.IListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RemoveNmeaListener(Android.Locations.IOnNmeaMessageListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.RemoveNmeaListener(Android.Locations.GpsStatus.INmeaListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.UnregisterGnssMeasurementsCallback(Android.Locations.GnssMeasurementsEvent.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.UnregisterGnssNavigationMessageCallback(Android.Locations.GnssNavigationMessage.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Locations.LocationManager.UnregisterGnssStatusCallback(Android.Locations.GnssStatus.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AsyncPlayer.Play(Android.Content.Context, Android.Net.Uri, System.Boolean, Android.Media.AudioAttributes)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AsyncPlayer.Play(Android.Content.Context, Android.Net.Uri, System.Boolean, Android.Media.Stream)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceCallback.OnAudioDevicesAdded(Android.Media.AudioDeviceInfo[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceCallback.OnAudioDevicesRemoved(Android.Media.AudioDeviceInfo[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceInfo.GetChannelCounts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceInfo.GetChannelIndexMasks()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceInfo.GetChannelMasks()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceInfo.GetEncodings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioDeviceInfo.GetSampleRates()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioFormat.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioFormat.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioFormat.Builder.SetChannelIndexMask(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.GetDevices(Android.Media.GetDevicesTargets)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.IsStreamMute(Android.Media.Stream)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.RegisterAudioDeviceCallback(Android.Media.AudioDeviceCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.RegisterAudioRecordingCallback(Android.Media.AudioManager.AudioRecordingCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioManager.SetStreamMute(Android.Media.Stream, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioManager.SetStreamSolo(Android.Media.Stream, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.UnregisterAudioDeviceCallback(Android.Media.AudioDeviceCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.UnregisterAudioRecordingCallback(Android.Media.AudioManager.AudioRecordingCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.AudioRecordingCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.AudioRecordingCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioManager.AudioRecordingCallback.OnRecordingConfigChanged(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.AddOnRoutingChangedListener(Android.Media.IAudioRoutingOnRoutingChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.AddOnRoutingChangedListener(Android.Media.AudioRecord.IOnRoutingChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.AddOnRoutingChangedListener(Android.Media.AudioRecord.IOnRoutingChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.GetTimestamp(Android.Media.AudioTimestamp, Android.Media.AudioTimebase)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Read(Java.Nio.ByteBuffer, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Read(System.Byte[], System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Read(System.Int16[], System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Read(System.Single[], System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.ReadAsync(Java.Nio.ByteBuffer, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.ReadAsync(System.Byte[], System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.ReadAsync(System.Int16[], System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.ReadAsync(System.Single[], System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.RemoveOnRoutingChangedListener(Android.Media.IAudioRoutingOnRoutingChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.RemoveOnRoutingChangedListener(Android.Media.AudioRecord.IOnRoutingChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.RemoveOnRoutingChangedListener(Android.Media.AudioRecord.IOnRoutingChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.SetPreferredDevice(Android.Media.AudioDeviceInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Builder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Builder.SetAudioFormat(Android.Media.AudioFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Builder.SetAudioSource(Android.Media.AudioSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.Builder.SetBufferSizeInBytes(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.IOnRoutingChangedListener' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.IOnRoutingChangedListener.Android.Media.IAudioRoutingOnRoutingChangedListener.OnRoutingChanged(Android.Media.IAudioRouting)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.IOnRoutingChangedListener.Android.Media.IAudioRoutingOnRoutingChangedListener.OnRoutingChanged(Android.Media.IAudioRouting)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.IOnRoutingChangedListener.OnRoutingChanged(Android.Media.AudioRecord)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecord.IOnRoutingChangedListener.OnRoutingChanged(Android.Media.AudioRecord)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecordingConfiguration' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecordingConfiguration.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioRecordingConfiguration.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.AddOnRoutingChangedListener(Android.Media.IAudioRoutingOnRoutingChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.AddOnRoutingChangedListener(Android.Media.AudioTrack.IOnRoutingChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.AddOnRoutingChangedListener(Android.Media.AudioTrack.IOnRoutingChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.PlaybackParams.set(Android.Media.PlaybackParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.RemoveOnRoutingChangedListener(Android.Media.IAudioRoutingOnRoutingChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.RemoveOnRoutingChangedListener(Android.Media.AudioTrack.IOnRoutingChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.RemoveOnRoutingChangedListener(Android.Media.AudioTrack.IOnRoutingChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.SetBufferSizeInFrames(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.SetPreferredDevice(Android.Media.AudioDeviceInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Write(Java.Nio.ByteBuffer, System.Int32, Android.Media.WriteMode, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Write(System.Byte[], System.Int32, System.Int32, Android.Media.WriteMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Write(System.Int16[], System.Int32, System.Int32, Android.Media.WriteMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.WriteAsync(Java.Nio.ByteBuffer, System.Int32, Android.Media.WriteMode, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.WriteAsync(System.Byte[], System.Int32, System.Int32, Android.Media.WriteMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.WriteAsync(System.Int16[], System.Int32, System.Int32, Android.Media.WriteMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder.SetAudioAttributes(Android.Media.AudioAttributes)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder.SetAudioFormat(Android.Media.AudioFormat)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder.SetBufferSizeInBytes(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder.SetSessionId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.Builder.SetTransferMode(Android.Media.AudioTrackMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.IOnRoutingChangedListener' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.IOnRoutingChangedListener.Android.Media.IAudioRoutingOnRoutingChangedListener.OnRoutingChanged(Android.Media.IAudioRouting)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.IOnRoutingChangedListener.Android.Media.IAudioRoutingOnRoutingChangedListener.OnRoutingChanged(Android.Media.IAudioRouting)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.IOnRoutingChangedListener.OnRoutingChanged(Android.Media.AudioTrack)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.AudioTrack.IOnRoutingChangedListener.OnRoutingChanged(Android.Media.AudioTrack)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.DrmInitData' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.DrmInitData.Get(Java.Util.UUID)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.DrmInitData.SchemeInitData' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ExifInterface..ctor(Java.IO.FileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ExifInterface..ctor(System.IO.Stream)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ExifInterface.GetThumbnailRange()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.IAudioRouting.AddOnRoutingChangedListener(Android.Media.IAudioRoutingOnRoutingChangedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.IAudioRouting.PreferredDevice.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.IAudioRouting.RemoveOnRoutingChangedListener(Android.Media.IAudioRoutingOnRoutingChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.IAudioRouting.RoutedDevice.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.IAudioRouting.SetPreferredDevice(Android.Media.AudioDeviceInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.IAudioRoutingOnRoutingChangedListener.OnRoutingChanged(Android.Media.IAudioRouting)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ImageWriter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ImageWriter.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ImageWriter.DequeueInputImage()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ImageWriter.NewInstance(Android.Views.Surface, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ImageWriter.QueueInputImage(Android.Media.Image)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ImageWriter.SetOnImageReleasedListener(Android.Media.ImageWriter.IOnImageReleasedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.ImageWriter.IOnImageReleasedListener.OnImageReleased(Android.Media.ImageWriter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.CreatePersistentInputSurface()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.SetCallback(Android.Media.MediaCodec.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.SetInputSurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.SetOnFrameRenderedListener(Android.Media.MediaCodec.IOnFrameRenderedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.SetOutputSurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.CryptoInfo.SetPattern(Android.Media.MediaCodec.CryptoInfo.Pattern)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.CryptoInfo.Pattern' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.CryptoInfo.Pattern..ctor(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.CryptoInfo.Pattern.Set(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodec.IOnFrameRenderedListener.OnFrameRendered(Android.Media.MediaCodec, System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCodecInfo.VideoCapabilities.GetAchievableFrameRatesFor(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaCrypto.SetMediaDrmSession(System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDataSource' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDataSource..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDataSource.ReadAt(System.Int64, System.Byte[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDataSource.Size.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDescription.Builder.SetMediaUri(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.GetSecureStop(System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.ReleaseAllSecureStops()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.SetOnExpirationUpdateListener(Android.Media.MediaDrm.IOnExpirationUpdateListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.SetOnKeyStatusChangeListener(Android.Media.MediaDrm.IOnKeyStatusChangeListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.IOnExpirationUpdateListener.OnExpirationUpdate(Android.Media.MediaDrm, System.Byte[], System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.IOnKeyStatusChangeListener.OnKeyStatusChange(Android.Media.MediaDrm, System.Byte[], System.Collections.Generic.IList, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.KeyStatus' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrm.KeyStatus.GetKeyId()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrmResetException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaDrmResetException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaExtractor.SetDataSource(Android.Content.Res.AssetFileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaExtractor.SetDataSource(Android.Media.MediaDataSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaExtractor.SetDataSourceAsync(Android.Content.Res.AssetFileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaExtractor.SetDataSourceAsync(Android.Media.MediaDataSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaMetadataRetriever.SetDataSource(Android.Media.MediaDataSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaMetadataRetriever.SetDataSourceAsync(Android.Media.MediaDataSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.PlaybackParams.set(Android.Media.PlaybackParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.SetDataSource(Android.Content.Res.AssetFileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.SetDataSource(Android.Media.MediaDataSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.SetDataSourceAsync(Android.Content.Res.AssetFileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.SetDataSourceAsync(Android.Media.MediaDataSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.SetOnTimedMetaDataAvailableListener(Android.Media.MediaPlayer.IOnTimedMetaDataAvailableListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.SyncParams.set(Android.Media.SyncParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaPlayer.IOnTimedMetaDataAvailableListener.OnTimedMetaDataAvailable(Android.Media.MediaPlayer, Android.Media.TimedMetaData)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaRecorder.Pause()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaRecorder.Resume()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaRecorder.SetInputSurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.CreateInputSurface()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.Flush()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.PlaybackParams.set(Android.Media.PlaybackParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.QueueAudio(Java.Nio.ByteBuffer, System.Int32, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.Release()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.SetAudioTrack(Android.Media.AudioTrack)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.SetCallback(Android.Media.MediaSync.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.SetOnErrorListener(Android.Media.MediaSync.IOnErrorListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.SetSurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.SyncParams.set(Android.Media.SyncParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.Callback.OnAudioBufferConsumed(Android.Media.MediaSync, Java.Nio.ByteBuffer, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaSync.IOnErrorListener.OnError(Android.Media.MediaSync, Android.Media.MediaSyncErrorCode, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.MediaTimestamp' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams.AllowDefaults()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams.SetAudioFallbackMode(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams.SetPitch(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams.SetSpeed(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.PlaybackParams.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.SyncParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.SyncParams..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.SyncParams.AllowDefaults()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.SyncParams.SetAudioAdjustMode(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.SyncParams.SetFrameRate(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.SyncParams.SetSyncSource(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.SyncParams.SetTolerance(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TimedMetaData' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TimedMetaData.GetMetaData()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.GetItem(System.String, Android.Media.Browse.MediaBrowser.ItemCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.Subscribe(System.String, Android.OS.Bundle, Android.Media.Browse.MediaBrowser.SubscriptionCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.Unsubscribe(System.String, Android.Media.Browse.MediaBrowser.SubscriptionCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.ItemCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.ItemCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.ItemCallback.OnError(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.ItemCallback.OnItemLoaded(Android.Media.Browse.MediaBrowser.MediaItem)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.SubscriptionCallback.OnChildrenLoaded(System.String, System.Collections.Generic.IList, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Browse.MediaBrowser.SubscriptionCallback.OnError(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDevice' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDevice.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDevice.ConnectPorts(Android.Media.Midi.MidiInputPort, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDevice.OpenInputPort(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDevice.OpenOutputPort(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDevice.MidiConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDevice.MidiConnection.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceInfo.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceInfo.GetPorts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceInfo.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceInfo.PortInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceService.GetOutputPortReceivers()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceService.OnClose()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceService.OnDeviceStatusChanged(Android.Media.Midi.MidiDeviceStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceService.OnGetInputPortReceivers()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceStatus' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceStatus.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceStatus.GetOutputPortOpenCount(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceStatus.IsInputPortOpen(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiDeviceStatus.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiInputPort' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiInputPort.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiInputPort.OnSend(System.Byte[], System.Int32, System.Int32, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.GetDevices()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.OpenBluetoothDevice(Android.Bluetooth.BluetoothDevice, Android.Media.Midi.MidiManager.IOnDeviceOpenedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.OpenDevice(Android.Media.Midi.MidiDeviceInfo, Android.Media.Midi.MidiManager.IOnDeviceOpenedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.RegisterDeviceCallback(Android.Media.Midi.MidiManager.DeviceCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.UnregisterDeviceCallback(Android.Media.Midi.MidiManager.DeviceCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.DeviceCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.DeviceCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.DeviceCallback.OnDeviceAdded(Android.Media.Midi.MidiDeviceInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.DeviceCallback.OnDeviceRemoved(Android.Media.Midi.MidiDeviceInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.DeviceCallback.OnDeviceStatusChanged(Android.Media.Midi.MidiDeviceStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiManager.IOnDeviceOpenedListener.OnDeviceOpened(Android.Media.Midi.MidiDevice)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiOutputPort' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiOutputPort.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiOutputPort.OnConnect(Android.Media.Midi.MidiReceiver)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiOutputPort.OnDisconnect(Android.Media.Midi.MidiReceiver)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver..ctor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver.Flush()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver.OnFlush()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver.OnSend(System.Byte[], System.Int32, System.Int32, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver.Send(System.Byte[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiReceiver.Send(System.Byte[], System.Int32, System.Int32, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiSender' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiSender..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiSender.Connect(Android.Media.Midi.MidiReceiver)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiSender.Disconnect(Android.Media.Midi.MidiReceiver)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiSender.OnConnect(Android.Media.Midi.MidiReceiver)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Midi.MidiSender.OnDisconnect(Android.Media.Midi.MidiReceiver)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaController.TransportControls.PlayFromUri(Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaController.TransportControls.Prepare()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaController.TransportControls.PrepareFromMediaId(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaController.TransportControls.PrepareFromSearch(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaController.TransportControls.PrepareFromUri(Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaSession.SetRatingType(Android.Media.RatingStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaSession.Callback.OnPlayFromUri(Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaSession.Callback.OnPrepare()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaSession.Callback.OnPrepareFromMediaId(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaSession.Callback.OnPrepareFromSearch(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.MediaSession.Callback.OnPrepareFromUri(Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.Session.PlaybackState.Builder.SetExtras(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContentRating.Contains(Android.Media.TV.TvContentRating)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContract.BuildRecordedProgramUri(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContract.IsChannelUri(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContract.IsChannelUriForPassthroughInput(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContract.IsChannelUriForTunerInput(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContract.IsProgramUri(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContract.Programs.Genres.IsCanonical(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvContract.RecordedPrograms' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.CanRecord()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.IsHidden(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.LoadCustomLabel(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.LoadCustomLabelFormatted(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.Builder..ctor(Android.Content.Context, Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.Builder.SetCanRecord(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.Builder.SetExtras(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputInfo.Builder.SetTunerCount(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputManager.UpdateTvInputInfo(Android.Media.TV.TvInputInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputManager.TvInputCallback.OnInputUpdated(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputManager.TvInputCallback.OnTvInputInfoUpdated(Android.Media.TV.TvInputInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.OnCreateRecordingSession(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession..ctor(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.NotifyError(Android.Media.TV.RecordingError)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.NotifyRecordingStopped(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.NotifyTuned(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.OnAppPrivateCommand(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.OnRelease()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.OnStartRecording(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.OnStopRecording()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.OnTune(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.RecordingSession.OnTune(Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.LayoutSurface(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.NotifyTimeShiftStatusChanged(Android.Media.TV.TimeShiftStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnAppPrivateCommand(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnOverlayViewSizeChanged(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTimeShiftGetCurrentPosition()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTimeShiftGetStartPosition()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTimeShiftPause()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTimeShiftPlay(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTimeShiftResume()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTimeShiftSeekTo(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTimeShiftSetPlaybackParams(Android.Media.PlaybackParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvInputService.Session.OnTune(Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient..ctor(Android.Content.Context, System.String, Android.Media.TV.TvRecordingClient.RecordingCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.Release()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.SendAppPrivateCommand(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.StartRecording(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.StopRecording()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.Tune(System.String, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.Tune(System.String, Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.RecordingCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.RecordingCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.RecordingCallback.OnConnectionFailed(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.RecordingCallback.OnDisconnected(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.RecordingCallback.OnError(Android.Media.TV.RecordingError)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.RecordingCallback.OnRecordingStopped(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvRecordingClient.RecordingCallback.OnTuned(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvTrackInfo.Builder.SetDescription(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvTrackInfo.Builder.SetDescription(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvTrackInfo.Builder.SetVideoActiveFormatDescription(System.SByte)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvTrackInfo.Builder.SetVideoPixelAspectRatio(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.SendAppPrivateCommand(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.SetTimeShiftPositionCallback(Android.Media.TV.TvView.TimeShiftPositionCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.SetZOrderMediaOverlay(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.SetZOrderOnTop(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftPause()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftPlay(System.String, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftResume()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftSeekTo(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftSetPlaybackParams(Android.Media.PlaybackParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.Tune(System.String, Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftPositionCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftPositionCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftPositionCallback.OnTimeShiftCurrentPositionChanged(System.String, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TimeShiftPositionCallback.OnTimeShiftStartPositionChanged(System.String, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Media.TV.TvView.TvInputCallback.OnTimeShiftStatusChanged(System.String, Android.Media.TV.TimeShiftStatus)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDevice.GetPartialObject(System.Int32, System.Int64, System.Int64, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDevice.GetPartialObject64(System.Int32, System.Int64, System.Int64, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDevice.ImportFile(System.Int32, Android.OS.ParcelFileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDevice.ImportFileAsync(System.Int32, Android.OS.ParcelFileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDevice.ReadEvent(Android.OS.CancellationSignal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDevice.SendObject(System.Int32, System.Int64, Android.OS.ParcelFileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDevice.SendObjectInfo(Android.Mtp.MtpObjectInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDeviceInfo.GetEventsSupported()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDeviceInfo.GetOperationsSupported()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDeviceInfo.IsEventSupported(Android.Mtp.EventCode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpDeviceInfo.IsOperationSupported(Android.Mtp.OperationCode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpEvent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder..ctor(Android.Mtp.MtpObjectInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetAssociationDesc(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetAssociationType(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetCompressedSize(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetDateCreated(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetDateModified(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetFormat(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetImagePixDepth(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetImagePixHeight(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetImagePixWidth(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetKeywords(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetObjectHandle(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetParent(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetProtectionStatus(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetSequenceNumber(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetStorageId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetThumbCompressedSize(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetThumbFormat(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetThumbPixHeight(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Mtp.MtpObjectInfo.Builder.SetThumbPixWidth(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.CaptivePortal' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.CaptivePortal.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.CaptivePortal.IgnoreNetwork()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.CaptivePortal.ReportCaptivePortalDismissed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.CaptivePortal.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.BindProcessToNetwork(Android.Net.Network)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.GetAllNetworkInfo()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.GetNetworkInfo(Android.Net.ConnectivityType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.IsNetworkTypeValid(Android.Net.ConnectivityType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.RegisterDefaultNetworkCallback(Android.Net.ConnectivityManager.NetworkCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.RegisterNetworkCallback(Android.Net.NetworkRequest, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.ReleaseNetworkRequest(Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.ReportBadNetwork(Android.Net.Network)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.ReportNetworkConnectivity(Android.Net.Network, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.RequestBandwidthUpdate(Android.Net.Network)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.RequestNetwork(Android.Net.NetworkRequest, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.SetProcessDefaultNetwork(Android.Net.Network)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.ConnectivityManager.UnregisterNetworkCallback(Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.IpPrefix.Contains(Java.Net.InetAddress)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Network.BindSocket(Java.IO.FileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Network.BindSocket(Java.Net.DatagramSocket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Network.OpenConnection(Java.Net.URL, Java.Net.Proxy)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.SSLCertificateSocketFactory.GetHttpSocketFactory(System.Int32, Android.Net.SSLSessionCache)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.TrafficStats.TagDatagramSocket(Java.Net.DatagramSocket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.TrafficStats.UntagDatagramSocket(Java.Net.DatagramSocket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.VpnService.SetUnderlyingNetworks(Android.Net.Network[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.VpnService.Builder.SetUnderlyingNetworks(Android.Net.Network[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.Http.AndroidHttpClient' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.Http.AndroidHttpClient.NewInstance(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Net.Http.AndroidHttpClient.NewInstance(System.String, Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Wifi.ScanResult.Is80211mcResponder()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Wifi.WifiEnterpriseConfig.AltSubjectMatch.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Wifi.WifiEnterpriseConfig.DomainSuffixMatch.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Wifi.WifiEnterpriseConfig.GetCaCertificates()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Wifi.WifiEnterpriseConfig.Plmn.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Wifi.WifiEnterpriseConfig.Realm.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Net.Wifi.WifiEnterpriseConfig.SetCaCertificates(Java.Security.Cert.X509Certificate[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.NfcAdapter.Ignore(Android.Nfc.Tag, System.Int32, Android.Nfc.NfcAdapter.IOnTagRemovedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.NfcAdapter.IOnTagRemovedListener.OnTagRemoved()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.HostNfcFService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.HostNfcFService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.HostNfcFService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.HostNfcFService.OnDeactivated(Android.Nfc.CardEmulators.DeactivationReasonF)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.HostNfcFService.ProcessNfcFPacket(System.Byte[], Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.HostNfcFService.SendResponsePacket(System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.DisableService(Android.App.Activity)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.EnableService(Android.App.Activity, Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.GetInstance(Android.Nfc.NfcAdapter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.GetNfcid2ForService(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.GetSystemCodeForService(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.RegisterSystemCodeForService(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.SetNfcid2ForService(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Nfc.CardEmulators.NfcFCardEmulation.UnregisterSystemCodeForService(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES30.GlGetTransformFeedbackVarying(System.Int32, System.Int32, System.Int32, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.ByteBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Opengl.GLES30.GlGetTransformFeedbackVarying(System.Int32, System.Int32, System.Int32, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.IntBuffer, System.SByte)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES30.GlReadPixels(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlBlendBarrier()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlBlendEquationi(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlBlendEquationSeparatei(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlBlendFunci(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlBlendFuncSeparatei(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlColorMaski(System.Int32, System.Boolean, System.Boolean, System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlCopyImageSubData(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDebugMessageCallback(Android.Opengl.GLES32.IDebugProc)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDebugMessageControl(System.Int32, System.Int32, System.Int32, System.Int32, Java.Nio.IntBuffer, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDebugMessageControl(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32[], System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDebugMessageInsert(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDisablei(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDrawElementsBaseVertex(System.Int32, System.Int32, System.Int32, Java.Nio.Buffer, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDrawElementsInstancedBaseVertex(System.Int32, System.Int32, System.Int32, Java.Nio.Buffer, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDrawElementsInstancedBaseVertex(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlDrawRangeElementsBaseVertex(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, Java.Nio.Buffer, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlEnablei(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlFramebufferTexture(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetDebugMessageLog(System.Int32, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetDebugMessageLog(System.Int32, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.IntBuffer, Java.Nio.ByteBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetDebugMessageLog(System.Int32, System.Int32, System.Int32[], System.Int32, System.Int32[], System.Int32, System.Int32[], System.Int32, System.Int32[], System.Int32, System.Int32[], System.Int32, System.Byte[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetDebugMessageLog(System.Int32, System.Int32[], System.Int32, System.Int32[], System.Int32, System.Int32[], System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetGraphicsResetStatus()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetnUniformfv(System.Int32, System.Int32, System.Int32, Java.Nio.FloatBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetnUniformfv(System.Int32, System.Int32, System.Int32, System.Single[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetnUniformiv(System.Int32, System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetnUniformiv(System.Int32, System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetnUniformuiv(System.Int32, System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetnUniformuiv(System.Int32, System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetObjectLabel(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetObjectPtrLabel(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetPointerv(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetSamplerParameterIiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetSamplerParameterIiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetSamplerParameterIuiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetSamplerParameterIuiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetTexParameterIiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetTexParameterIiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetTexParameterIuiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlGetTexParameterIuiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlIsEnabledi(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlMinSampleShading(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlObjectLabel(System.Int32, System.Int32, System.Int32, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlObjectPtrLabel(System.Int64, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlPatchParameteri(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlPopDebugGroup()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlPrimitiveBoundingBox(System.Single, System.Single, System.Single, System.Single, System.Single, System.Single, System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlPushDebugGroup(System.Int32, System.Int32, System.Int32, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlReadnPixels(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, Java.Nio.Buffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlSamplerParameterIiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlSamplerParameterIiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlSamplerParameterIuiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlSamplerParameterIuiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlTexBuffer(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlTexBufferRange(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlTexParameterIiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlTexParameterIiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlTexParameterIuiv(System.Int32, System.Int32, Java.Nio.IntBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlTexParameterIuiv(System.Int32, System.Int32, System.Int32[], System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.GlTexStorage3DMultisample(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLES32.IDebugProc.OnMessage(System.Int32, System.Int32, System.Int32, System.Int32, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Opengl.GLSurfaceView.SurfaceRedrawNeeded(Android.Views.ISurfaceHolder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.BaseBundle.GetBoolean(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.BaseBundle.GetBoolean(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.BaseBundle.GetBooleanArray(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.BaseBundle.PutBoolean(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.BaseBundle.PutBooleanArray(System.String, System.Boolean[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.CpuUsageInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.CpuUsageInfo.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.CpuUsageInfo.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.DeadObjectException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.DeadSystemException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.DeadSystemException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Debug.GetRuntimeStat(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetAllCounts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetGlobalAllocCount()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetGlobalAllocSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetGlobalClassInitCount()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetGlobalClassInitTime()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetGlobalFreedCount()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetGlobalFreedSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetGlobalGcInvocationCount()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetThreadAllocCount()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetThreadAllocSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.ResetThreadGcInvocationCount()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.InstructionCount' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.InstructionCount..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.InstructionCount.Collect()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.InstructionCount.GlobalMethodInvocations()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.InstructionCount.GlobalTotal()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.Debug.InstructionCount.ResetAndStart()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Debug.MemoryInfo.GetMemoryStat(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.FileUriExposedException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.FileUriExposedException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.HardwarePropertiesManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.HardwarePropertiesManager.GetCpuUsages()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.HardwarePropertiesManager.GetDeviceTemperatures(Android.OS.DeviceTemperatureType, Android.OS.TemperatureSource)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.HardwarePropertiesManager.GetFanSpeeds()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList..ctor(Java.Util.Locale[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.Default.set(Android.OS.LocaleList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.ForLanguageTags(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.Get(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.GetFirstMatch(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.IndexOf(Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.Size()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.ToLanguageTags()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.LocaleList.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Message.Asynchronous.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.MessageQueue.AddOnFileDescriptorEventListener(Java.IO.FileDescriptor, System.Int32, Android.OS.MessageQueue.IOnFileDescriptorEventListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.MessageQueue.RemoveOnFileDescriptorEventListener(Java.IO.FileDescriptor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.MessageQueue.IOnFileDescriptorEventListener.OnFileDescriptorEvents(Java.IO.FileDescriptor, Android.OS.MessageQueueEventType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Parcel.ReadTypedObject(Android.OS.IParcelableCreator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Parcel.WriteTypedObject(Java.Lang.Object, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.PowerManager.IsIgnoringBatteryOptimizations(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Process.GetExclusiveCores()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Process.Is64Bit()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Process.IsApplicationUid(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.StrictMode.ThreadPolicy.Builder.DetectResourceMismatches()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.StrictMode.ThreadPolicy.Builder.PermitResourceMismatches()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.StrictMode.VmPolicy.Builder.DetectCleartextNetwork()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.StrictMode.VmPolicy.Builder.PenaltyDeathOnCleartextNetwork()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.StrictMode.VmPolicy.Builder.PenaltyDeathOnFileUriExposure()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.TransactionTooLargeException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.UserHandle.GetUserHandleForUid(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.UserManager.CreateUserCreationIntent(System.String, System.String, System.String, Android.OS.PersistableBundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.UserManager.GetUserCreationTime(Android.OS.UserHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.UserManager.InvokeIsUserUnlocked(Android.OS.UserHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.UserManager.IsQuietModeEnabled(Android.OS.UserHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.OS.UserManager.SetRestrictionsChallenge(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.UserManager.SupportsMultipleUsers()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetMeasurement(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetMeasurementKeyAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetMeasurements(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetMeasurementsKeyAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetStats(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetStatsKeyAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetTimer(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetTimerCount(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetTimerKeyAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetTimers(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetTimersKeyAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.GetTimerTime(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.HasMeasurement(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.HasMeasurements(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.HasStats(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.HasTimer(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.HealthStats.HasTimers(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.PackageHealthStats' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.PidHealthStats' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.ProcessHealthStats' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.ServiceHealthStats' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.SystemHealthManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.SystemHealthManager.TakeMyUidSnapshot()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.SystemHealthManager.TakeUidSnapshot(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.SystemHealthManager.TakeUidSnapshots(System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat..ctor(Android.OS.Parcel)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat..ctor(System.Int32, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat.Count.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat.Time.set(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.TimerStat.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Health.UidHealthStats' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Storage.StorageManager.GetStorageVolume(Java.IO.File)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Storage.StorageManager.IsEncrypted(Java.IO.File)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Storage.StorageVolume' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Storage.StorageVolume.CreateAccessIntent(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Storage.StorageVolume.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Storage.StorageVolume.GetDescription(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.OS.Storage.StorageVolume.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Preferences.Preference.GetPersistedStringSet(System.Collections.Generic.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Preferences.Preference.PersistStringSet(System.Collections.Generic.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Preferences.PreferenceManager.GetDefaultSharedPreferencesName(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Preferences.PreferenceManager.SetStorageDefault()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Preferences.PreferenceManager.SetStorageDeviceProtected()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Print.PrintAttributes.Builder.SetDuplexMode(Android.Print.DuplexMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Print.PrinterCapabilitiesInfo.Builder.SetDuplexModes(Android.Print.DuplexMode, Android.Print.DuplexMode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Print.PrinterInfo.Builder.SetHasCustomPrinterIcon(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Print.PrinterInfo.Builder.SetIconResourceId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Print.PrinterInfo.Builder.SetInfoIntent(Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.PrintServices.CustomPrinterIconCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.PrintServices.CustomPrinterIconCallback.OnCustomPrinterIconLoaded(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.PrintServices.PrinterDiscoverySession.OnRequestCustomPrinterIcon(Android.Print.PrinterId, Android.OS.CancellationSignal, Android.PrintServices.CustomPrinterIconCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.PrintServices.PrintJob.SetProgress(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.PrintServices.PrintJob.SetStatus(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.PrintServices.PrintJob.SetStatus(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.PrintServices.PrintJob.SetStatus(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.BlockedNumberContract' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.BlockedNumberContract.CanCurrentUserBlockNumbers(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.BlockedNumberContract.IsBlocked(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.BlockedNumberContract.Unblock(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.BlockedNumberContract.BlockedNumbers' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Contacts.AggregationSuggestions.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Contacts.AggregationSuggestions.Builder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Contacts.AggregationSuggestions.Builder.AddNameParameter(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Contacts.AggregationSuggestions.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Contacts.AggregationSuggestions.Builder.SetContactId(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Contacts.AggregationSuggestions.Builder.SetLimit(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Directory.IsEnterpriseDirectoryId(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.Directory.IsRemoteDirectoryId(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.ProviderStatus' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.QuickContact.ShowQuickContact(Android.Content.Context, Android.Graphics.Rect, Android.Net.Uri, System.String[], System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.ContactsContract.QuickContact.ShowQuickContact(Android.Content.Context, Android.Views.View, Android.Net.Uri, System.String[], System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsContract.CopyDocument(Android.Content.ContentResolver, Android.Net.Uri, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsContract.IsTreeUri(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsContract.MoveDocument(Android.Content.ContentResolver, Android.Net.Uri, Android.Net.Uri, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsContract.RemoveDocument(Android.Content.ContentResolver, Android.Net.Uri, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsProvider.CopyDocument(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsProvider.GetDocumentStreamTypes(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsProvider.MoveDocument(System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsProvider.OpenTypedDocument(System.String, System.String, Android.OS.Bundle, Android.OS.CancellationSignal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.DocumentsProvider.RemoveDocument(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.Settings.CanDrawOverlays(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.Settings.System.CanWrite(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.Telephony.Threads.GetOrCreateThreadId(Android.Content.Context, System.Collections.Generic.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Provider.Telephony.Threads.GetOrCreateThreadId(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeTo(System.Int32, System.Int32, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeTo(System.Int32, System.Int32, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeTo(System.Int32, System.Int32, System.Int16[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeTo(System.Int32, System.Int32, System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeTo(System.Int32, System.Int32, System.Single[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeToUnchecked(System.Int32, System.Int32, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeToUnchecked(System.Int32, System.Int32, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeToUnchecked(System.Int32, System.Int32, System.Int16[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeToUnchecked(System.Int32, System.Int32, System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy1DRangeToUnchecked(System.Int32, System.Int32, System.Single[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy2DRangeTo(System.Int32, System.Int32, System.Int32, System.Int32, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy2DRangeTo(System.Int32, System.Int32, System.Int32, System.Int32, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy2DRangeTo(System.Int32, System.Int32, System.Int32, System.Int32, System.Int16[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy2DRangeTo(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy2DRangeTo(System.Int32, System.Int32, System.Int32, System.Int32, System.Single[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy3DRangeFrom(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy3DRangeFrom(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.Copy3DRangeTo(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.CreateAllocations(Android.Renderscripts.RenderScript, Android.Renderscripts.Type, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.SetAutoPadding(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Allocation.SetFromFieldPacker(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.FieldPacker)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.AllocationAdapter.CreateTyped(Android.Renderscripts.RenderScript, Android.Renderscripts.Allocation, Android.Renderscripts.Type)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.AllocationAdapter.SetX(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Element.F16(Android.Renderscripts.RenderScript)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Element.F16_2(Android.Renderscripts.RenderScript)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Element.F16_3(Android.Renderscripts.RenderScript)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Element.F16_4(Android.Renderscripts.RenderScript)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.RenderScript.CreateMultiContext(Android.Content.Context, Android.Renderscripts.RenderScript.ContextType, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.RenderScript.ReleaseAllContexts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Script.CreateInvokeID(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Script.ForEach(System.Int32, Android.Renderscripts.Allocation[], Android.Renderscripts.Allocation, Android.Renderscripts.FieldPacker)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Script.ForEach(System.Int32, Android.Renderscripts.Allocation[], Android.Renderscripts.Allocation, Android.Renderscripts.FieldPacker, Android.Renderscripts.Script.LaunchOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Script.Reduce(System.Int32, Android.Renderscripts.Allocation[], Android.Renderscripts.Allocation, Android.Renderscripts.Script.LaunchOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.Script.InvokeID' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Execute()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Execute(Java.Lang.Object[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.SetInput(Android.Renderscripts.Script.KernelID, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.SetOutput(Android.Renderscripts.Script.KernelID, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Binding' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Binding..ctor(Android.Renderscripts.Script.FieldID, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder..ctor(Android.Renderscripts.RenderScript)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder.AddConnection(Android.Renderscripts.Type, Android.Renderscripts.Script.KernelID, Android.Renderscripts.Script.FieldID)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder.AddConnection(Android.Renderscripts.Type, Android.Renderscripts.Script.KernelID, Android.Renderscripts.Script.KernelID)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder.AddKernel(Android.Renderscripts.Script.KernelID)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder.Create()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder2' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder2..ctor(Android.Renderscripts.RenderScript)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder2.AddInput()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder2.AddInvoke(Android.Renderscripts.Script.InvokeID, Java.Lang.Object[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder2.AddKernel(Android.Renderscripts.Script.KernelID, Android.Renderscripts.Type, Java.Lang.Object[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Builder2.Create(System.String, Android.Renderscripts.ScriptGroup.Future[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Closure' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Closure.GetGlobal(Android.Renderscripts.Script.FieldID)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Future' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptGroup.Input' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.BNNM(Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CGBMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CGEMM(System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Float2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CGEMV(System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CGERC(Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CGERU(Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHBMV(System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHEMM(System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Float2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHEMV(System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHER(System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHER2(System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHER2K(System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Single, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHERK(System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, System.Single, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHPMV(System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHPR(System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CHPR2(System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.Create(Android.Renderscripts.RenderScript)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CSYMM(System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Float2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CSYR2K(System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Float2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CSYRK(System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Float2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTBMV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTBSV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTPMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTPSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTRMM(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTRMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTRSM(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Float2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.CTRSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DGBMV(System.Int32, System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DGEMM(System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Double, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DGEMV(System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DGER(System.Double, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSBMV(System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSPMV(System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSPR(System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSPR2(System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSYMM(System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Double, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSYMV(System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSYR(System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSYR2(System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSYR2K(System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Double, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DSYRK(System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, System.Double, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTBMV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTBSV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTPMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTPSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTRMM(System.Int32, System.Int32, System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTRMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTRSM(System.Int32, System.Int32, System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.DTRSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SGBMV(System.Int32, System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SGEMM(System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Single, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SGEMV(System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SGER(System.Single, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSBMV(System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSPMV(System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSPR(System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSPR2(System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSYMM(System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Single, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSYMV(System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSYR(System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSYR2(System.Int32, System.Single, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSYR2K(System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Single, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.SSYRK(System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, System.Single, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STBMV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STBSV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STPMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STPSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STRMM(System.Int32, System.Int32, System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STRMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STRSM(System.Int32, System.Int32, System.Int32, System.Int32, System.Single, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.STRSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZGBMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZGEMM(System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Double2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZGEMV(System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZGERC(Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZGERU(Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHBMV(System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHEMM(System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Double2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHEMV(System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHER(System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHER2(System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHER2K(System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Double, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHERK(System.Int32, System.Int32, System.Double, Android.Renderscripts.Allocation, System.Double, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHPMV(System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHPR(System.Int32, System.Double, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZHPR2(System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation, System.Int32, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZSYMM(System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Double2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZSYR2K(System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, Android.Renderscripts.Double2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZSYRK(System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Double2, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTBMV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTBSV(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTPMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTPSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTRMM(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTRMV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTRSM(System.Int32, System.Int32, System.Int32, System.Int32, Android.Renderscripts.Double2, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Renderscripts.ScriptIntrinsicBLAS.ZTRSV(System.Int32, System.Int32, System.Int32, Android.Renderscripts.Allocation, Android.Renderscripts.Allocation, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.KeyChain.ChoosePrivateKeyAlias(Android.App.Activity, Android.Security.IKeyChainAliasCallback, System.String[], Java.Security.IPrincipal[], Android.Net.Uri, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyChain.IsBoundKeyAlgorithm(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder..ctor(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetAlgorithmParameterSpec(Java.Security.Spec.IAlgorithmParameterSpec)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetAlias(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetEncryptionRequired()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetEndDate(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetKeySize(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetKeyType(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetSerialNumber(Java.Math.BigInteger)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetStartDate(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyPairGeneratorSpec.Builder.SetSubject(Javax.Security.Auth.X500.X500Principal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyStoreParameter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyStoreParameter.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyStoreParameter.Builder..ctor(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyStoreParameter.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Security.KeyStoreParameter.Builder.SetEncryptionRequired(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.NetworkSecurityPolicy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.NetworkSecurityPolicy.InvokeIsCleartextTrafficPermitted(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyExpiredException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyExpiredException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyExpiredException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyExpiredException..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.GetAttestationChallenge()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.GetBlockModes()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.GetDigests()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.GetEncryptionPaddings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.GetSignaturePaddings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder..ctor(System.String, Android.Security.Keystore.KeyStorePurpose)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetAlgorithmParameterSpec(Java.Security.Spec.IAlgorithmParameterSpec)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetAttestationChallenge(System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetBlockModes(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetCertificateNotAfter(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetCertificateNotBefore(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetCertificateSerialNumber(Java.Math.BigInteger)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetCertificateSubject(Javax.Security.Auth.X500.X500Principal)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetDigests(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetEncryptionPaddings(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetInvalidatedByBiometricEnrollment(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetKeySize(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetKeyValidityEnd(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetKeyValidityForConsumptionEnd(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetKeyValidityForOriginationEnd(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetKeyValidityStart(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetRandomizedEncryptionRequired(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetSignaturePaddings(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetUserAuthenticationRequired(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetUserAuthenticationValidityDurationSeconds(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyGenParameterSpec.Builder.SetUserAuthenticationValidWhileOnBody(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyInfo.GetBlockModes()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyInfo.GetDigests()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyInfo.GetEncryptionPaddings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyInfo.GetSignaturePaddings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyNotYetValidException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyNotYetValidException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyNotYetValidException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyNotYetValidException..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyPermanentlyInvalidatedException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyPermanentlyInvalidatedException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyPermanentlyInvalidatedException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyPermanentlyInvalidatedException..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProperties' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.GetBlockModes()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.GetDigests()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.GetEncryptionPaddings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.GetSignaturePaddings()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder..ctor(Android.Security.Keystore.KeyStorePurpose)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetBlockModes(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetDigests(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetEncryptionPaddings(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetInvalidatedByBiometricEnrollment(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetKeyValidityEnd(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetKeyValidityForConsumptionEnd(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetKeyValidityForOriginationEnd(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetKeyValidityStart(Java.Util.Date)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetRandomizedEncryptionRequired(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetSignaturePaddings(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetUserAuthenticationRequired(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetUserAuthenticationValidityDurationSeconds(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.KeyProtection.Builder.SetUserAuthenticationValidWhileOnBody(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.UserNotAuthenticatedException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.UserNotAuthenticatedException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.UserNotAuthenticatedException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Security.Keystore.UserNotAuthenticatedException..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierIdentifier' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierIdentifier..ctor(System.String, System.String, System.String, System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierIdentifier.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierIdentifier.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnDownloadMms(Android.Net.Uri, System.Int32, Android.Net.Uri, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnFilterSms(Android.Service.Carrier.MessagePdu, System.String, System.Int32, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnFilterSms(Android.Service.Carrier.MessagePdu, System.String, System.Int32, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnReceiveTextSms(Android.Service.Carrier.MessagePdu, System.String, System.Int32, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendDataSms(System.Byte[], System.Int32, System.String, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendDataSms(System.Byte[], System.Int32, System.String, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendDataSms(System.Byte[], System.Int32, System.String, System.Int32, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendMms(Android.Net.Uri, System.Int32, Android.Net.Uri, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendMultipartTextSms(System.Collections.Generic.IList, System.Int32, System.String, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendMultipartTextSms(System.Collections.Generic.IList, System.Int32, System.String, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendMultipartTextSms(System.Collections.Generic.IList, System.Int32, System.String, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendTextSms(System.String, System.Int32, System.String, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendTextSms(System.String, System.Int32, System.String, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.OnSendTextSms(System.String, System.Int32, System.String, System.Int32, Android.Service.Carrier.CarrierMessagingService.IResultCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.IResultCallback.OnReceiveResult(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendMmsResult' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendMmsResult..ctor(Android.Service.Carrier.MessageSendStatus, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendMmsResult.GetSendConfPdu()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendMultipartSmsResult' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendMultipartSmsResult..ctor(Android.Service.Carrier.MessageSendStatus, System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendMultipartSmsResult.GetMessageRefs()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendSmsResult' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierMessagingService.SendSmsResult..ctor(Android.Service.Carrier.MessageSendStatus, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierService.NotifyCarrierNetworkChange(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.CarrierService.OnLoadConfig(Android.Service.Carrier.CarrierIdentifier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.MessagePdu' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.MessagePdu..ctor(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.MessagePdu.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Carrier.MessagePdu.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTarget' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTarget..ctor(Java.Lang.ICharSequence, Android.Graphics.Drawables.Icon, System.Single, Android.Content.ComponentName, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTarget..ctor(System.String, Android.Graphics.Drawables.Icon, System.Single, Android.Content.ComponentName, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTarget.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTarget.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTargetService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTargetService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTargetService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Chooser.ChooserTargetService.OnGetChooserTargets(Android.Content.ComponentName, Android.Content.IntentFilter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Dreams.DreamService.OnSearchRequested(Android.Views.SearchEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Dreams.DreamService.OnWindowStartingActionMode(Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.CameraPrewarmService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.CameraPrewarmService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.CameraPrewarmService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.CameraPrewarmService.OnCooldown(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.CameraPrewarmService.OnPrewarm()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.MediaBrowserService.NotifyChildrenChanged(System.String, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.MediaBrowserService.OnLoadChildren(System.String, Android.Service.Media.MediaBrowserService.Result, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Media.MediaBrowserService.OnLoadItem(System.String, Android.Service.Media.MediaBrowserService.Result)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition..ctor(Android.Net.Uri, System.String, Android.Service.Notification.ConditionState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition..ctor(Android.Net.Uri, System.String, System.String, System.String, System.Int32, Android.Service.Notification.ConditionState, Android.Service.Notification.ConditionFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition..ctor(Android.OS.Parcel)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition.Copy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition.IsValidId(Android.Net.Uri, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition.NewId(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition.RelevanceToString(Android.Service.Notification.ConditionFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition.StateToString(Android.Service.Notification.ConditionState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.Condition.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService.NotifyCondition(Android.Service.Notification.Condition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService.NotifyConditions(Android.Service.Notification.Condition[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService.OnConnected()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService.OnRequestConditions(Android.Service.Notification.ConditionFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService.OnSubscribe(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.ConditionProviderService.OnUnsubscribe(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.NotificationListenerService.OnListenerDisconnected()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.NotificationListenerService.RequestRebind(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.NotificationListenerService.RequestUnbind()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.NotificationListenerService.SetNotificationsShown(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Notification.StatusBarNotification.OverrideGroupKey.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile.ContentDescriptionFormatted.set(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile.Icon.set(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile.LabelFormatted.set(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile.State.set(Android.Service.QuickSettings.TileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile.UpdateTile()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.Tile.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.OnClick()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.OnStartListening()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.OnStopListening()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.OnTileAdded()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.OnTileRemoved()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.RequestListeningState(Android.Content.Context, Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.ShowDialog(Android.App.Dialog)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.StartActivityAndCollapse(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.QuickSettings.TileService.UnlockAndRun(Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionService.DisabledShowContext.set(Android.Service.Voice.ShowFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionService.OnLaunchVoiceAssistFromKeyguard()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionService.ShowSession(Android.OS.Bundle, Android.Service.Voice.ShowFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.CloseSystemDialogs()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.DisabledShowContext.set(Android.Service.Voice.ShowFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.Dump(System.String, Java.IO.FileDescriptor, Java.IO.PrintWriter, System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.Hide()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnAssistStructureFailure(Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnBackPressed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnCancelRequest(Android.Service.Voice.VoiceInteractionSession.Request)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnComputeInsets(Android.Service.Voice.VoiceInteractionSession.Insets)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnConfigurationChanged(Android.Content.Res.Configuration)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnCreate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnCreateContentView()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnGetSupportedCommands(System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnHandleAssist(Android.OS.Bundle, Android.App.Assist.AssistStructure, Android.App.Assist.AssistContent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnHandleAssistSecondary(Android.OS.Bundle, Android.App.Assist.AssistStructure, Android.App.Assist.AssistContent, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnHandleScreenshot(Android.Graphics.Bitmap)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnHide()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnLockscreenShown()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnLowMemory()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnRequestAbortVoice(Android.Service.Voice.VoiceInteractionSession.AbortVoiceRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnRequestCommand(Android.Service.Voice.VoiceInteractionSession.CommandRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnRequestCompleteVoice(Android.Service.Voice.VoiceInteractionSession.CompleteVoiceRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnRequestConfirmation(Android.Service.Voice.VoiceInteractionSession.ConfirmationRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnRequestPickOption(Android.Service.Voice.VoiceInteractionSession.PickOptionRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnShow(Android.OS.Bundle, Android.Service.Voice.ShowFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnTaskFinished(Android.Content.Intent, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnTaskStarted(Android.Content.Intent, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.OnTrimMemory(Android.Content.TrimMemory)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.SetKeepAwake(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.SetTheme(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.Show(Android.OS.Bundle, Android.Service.Voice.ShowFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.StartVoiceActivity(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.AbortVoiceRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.AbortVoiceRequest.SendAbortResult(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.CommandRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.CommandRequest.SendIntermediateResult(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.CommandRequest.SendResult(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.CompleteVoiceRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.CompleteVoiceRequest.SendCompleteResult(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.ConfirmationRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.ConfirmationRequest.SendConfirmationResult(System.Boolean, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.Insets' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.Insets..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.PickOptionRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.PickOptionRequest.GetOptions()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.PickOptionRequest.SendIntermediatePickOptionResult(Android.App.VoiceInteractor.PickOptionRequest.Option[], Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.PickOptionRequest.SendPickOptionResult(Android.App.VoiceInteractor.PickOptionRequest.Option[], Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.Request' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.Voice.VoiceInteractionSession.Request.Cancel()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.VR.VrListenerService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.VR.VrListenerService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.VR.VrListenerService.IsVrModePackageEnabled(Android.Content.Context, Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.VR.VrListenerService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Service.VR.VrListenerService.OnCurrentVrActivityChanged(Android.Content.ComponentName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Speech.Tts.UtteranceProgressListener.OnAudioAvailable(System.String, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Speech.Tts.UtteranceProgressListener.OnBeginSynthesis(System.String, System.Int32, Android.Media.Encoding, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Speech.Tts.UtteranceProgressListener.OnStop(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Answer(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Conference(Android.Telecom.Call)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Disconnect()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.GetDetails()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Hold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.MergeConference()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.PhoneAccountSelected(Android.Telecom.PhoneAccountHandle, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.PlayDtmfTone(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.PostDialContinue(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.RegisterCallback(Android.Telecom.Call.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.RegisterCallback(Android.Telecom.Call.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Reject(System.Boolean, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.SplitFromConference()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.StopDtmfTone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.SwapConference()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Unhold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.UnregisterCallback(Android.Telecom.Call.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnCallDestroyed(Android.Telecom.Call)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnCannedTextResponsesLoaded(Android.Telecom.Call, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnChildrenChanged(Android.Telecom.Call, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnConferenceableCallsChanged(Android.Telecom.Call, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnDetailsChanged(Android.Telecom.Call, Android.Telecom.Call.Details)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnParentChanged(Android.Telecom.Call, Android.Telecom.Call)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnPostDialWait(Android.Telecom.Call, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnStateChanged(Android.Telecom.Call, Android.Telecom.CallState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Callback.OnVideoCallChanged(Android.Telecom.Call, Android.Telecom.InCallService.VideoCall)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details.Can(Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details.Can(Android.Telecom.ConnectionCapability, Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details.CapabilitiesToString(Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details.GetHandle()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details.HasProperty(Android.Telecom.CallProperty)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details.HasProperty(Android.Telecom.CallProperty, Android.Telecom.CallProperty)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Call.Details.PropertiesToString(Android.Telecom.CallProperty)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallAudioState' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallAudioState..ctor(System.Boolean, Android.Telecom.CallAudioRoute, Android.Telecom.CallAudioRoute)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallAudioState.AudioRouteToString(Android.Telecom.CallAudioRoute)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallAudioState.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallAudioState.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.OnScreenCall(Android.Telecom.Call.Details)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.RespondToCall(Android.Telecom.Call.Details, Android.Telecom.CallScreeningService.CallResponse)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse.Builder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse.Builder.SetDisallowCall(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse.Builder.SetRejectCall(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse.Builder.SetSkipCallLog(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.CallScreeningService.CallResponse.Builder.SetSkipNotification(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference..ctor(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.AddConnection(Android.Telecom.Connection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.ConferenceableConnections.set(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.ConnectionTime.set(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.Destroy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.Extras.set(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnCallAudioStateChanged(Android.Telecom.CallAudioState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnConnectionAdded(Android.Telecom.Connection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnDisconnect()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnHold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnMerge()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnMerge(Android.Telecom.Connection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnPlayDtmfTone(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnSeparate(Android.Telecom.Connection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnStopDtmfTone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnSwap()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.OnUnhold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.RemoveConnection(Android.Telecom.Connection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.SetActive()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.SetConnectionCapabilities(Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.SetDialing()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.SetDisconnected(Android.Telecom.DisconnectCause)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.SetOnHold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.SetVideoProvider(Android.Telecom.Connection, Android.Telecom.Connection.VideoProvider)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.SetVideoState(Android.Telecom.Connection, Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conference.StatusHints.set(Android.Telecom.StatusHints)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Conferenceable' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.AudioModeIsVoip.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.CapabilitiesToString(Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.Conferenceables.set(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.ConnectionCapabilities.set(Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.CreateCanceledConnection()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.CreateFailedConnection(Android.Telecom.DisconnectCause)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.Destroy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.Extras.set(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.GetVideoProvider()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnAbort()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnAnswer()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnAnswer(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnCallAudioStateChanged(Android.Telecom.CallAudioState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnDisconnect()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnHold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnPlayDtmfTone(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnPostDialContinue(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnReject()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnReject(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnSeparate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnStateChanged(Android.Telecom.CallState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnStopDtmfTone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.OnUnhold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.RingbackRequested.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetActive()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetAddress(Android.Net.Uri, Android.Telecom.Presentation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetCallerDisplayName(System.String, Android.Telecom.Presentation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetConferenceableConnections(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetDialing()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetDisconnected(Android.Telecom.DisconnectCause)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetInitialized()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetInitializing()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetNextPostDialChar(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetOnHold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetPostDialWait(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetRinging()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetVideoProvider(Android.Telecom.Connection.VideoProvider)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.SetVideoState(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.StateToString(Android.Telecom.ConnectionState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.StatusHints.set(Android.Telecom.StatusHints)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.ChangeCameraCapabilities(Android.Telecom.VideoProfile.CameraCapabilities)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.ChangePeerDimensions(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.ChangeVideoQuality(Android.Telecom.VideoQuality)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.HandleCallSessionEvent(Android.Telecom.VideoSessionEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnRequestCameraCapabilities()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnRequestConnectionDataUsage()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSendSessionModifyRequest(Android.Telecom.VideoProfile, Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSendSessionModifyResponse(Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSetCamera(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSetDeviceOrientation(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSetDisplaySurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSetPauseImage(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSetPreviewSurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.OnSetZoom(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.ReceiveSessionModifyRequest(Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.ReceiveSessionModifyResponse(Android.Telecom.ModifyRequestResult, Android.Telecom.VideoProfile, Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.Connection.VideoProvider.SetCallDataUsage(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionRequest..ctor(Android.Telecom.PhoneAccountHandle, Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionRequest..ctor(Android.Telecom.PhoneAccountHandle, Android.Net.Uri, Android.OS.Bundle, Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionRequest.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionRequest.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.AddConference(Android.Telecom.Conference)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.AddExistingConnection(Android.Telecom.PhoneAccountHandle, Android.Telecom.Connection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.ConferenceRemoteConnections(Android.Telecom.RemoteConnection, Android.Telecom.RemoteConnection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.CreateRemoteIncomingConnection(Android.Telecom.PhoneAccountHandle, Android.Telecom.ConnectionRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.CreateRemoteOutgoingConnection(Android.Telecom.PhoneAccountHandle, Android.Telecom.ConnectionRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.OnConference(Android.Telecom.Connection, Android.Telecom.Connection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.OnCreateIncomingConnection(Android.Telecom.PhoneAccountHandle, Android.Telecom.ConnectionRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.OnCreateOutgoingConnection(Android.Telecom.PhoneAccountHandle, Android.Telecom.ConnectionRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.OnRemoteConferenceAdded(Android.Telecom.RemoteConference)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.ConnectionService.OnRemoteExistingConnectionAdded(Android.Telecom.RemoteConnection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause..ctor(Android.Telecom.Causes)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause..ctor(Android.Telecom.Causes, Java.Lang.ICharSequence, Java.Lang.ICharSequence, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause..ctor(Android.Telecom.Causes, Java.Lang.ICharSequence, Java.Lang.ICharSequence, System.String, Android.Media.Tone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause..ctor(Android.Telecom.Causes, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause..ctor(Android.Telecom.Causes, System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause..ctor(Android.Telecom.Causes, System.String, System.String, System.String, Android.Media.Tone)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.DisconnectCause.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.GatewayInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.GatewayInfo..ctor(System.String, Android.Net.Uri, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.GatewayInfo.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.GatewayInfo.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.CanAddCall()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.OnBind(Android.Content.Intent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.OnBringToForeground(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.OnCallAdded(Android.Telecom.Call)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.OnCallAudioStateChanged(Android.Telecom.CallAudioState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.OnCallRemoved(Android.Telecom.Call)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.OnCanAddCallChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.OnSilenceRinger()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.SetAudioRoute(Android.Telecom.CallAudioRoute)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.SetMuted(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.RegisterCallback(Android.Telecom.InCallService.VideoCall.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.RegisterCallback(Android.Telecom.InCallService.VideoCall.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.RequestCallDataUsage()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.RequestCameraCapabilities()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SendSessionModifyRequest(Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SendSessionModifyResponse(Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SetCamera(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SetDeviceOrientation(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SetDisplaySurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SetPauseImage(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SetPreviewSurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.SetZoom(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.UnregisterCallback(Android.Telecom.InCallService.VideoCall.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback.OnCallDataUsageChanged(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback.OnCallSessionEvent(Android.Telecom.VideoSessionEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback.OnCameraCapabilitiesChanged(Android.Telecom.VideoProfile.CameraCapabilities)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback.OnPeerDimensionsChanged(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback.OnSessionModifyRequestReceived(Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback.OnSessionModifyResponseReceived(Android.Telecom.ModifyRequestResult, Android.Telecom.VideoProfile, Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.InCallService.VideoCall.Callback.OnVideoQualityChanged(Android.Telecom.VideoQuality)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.HasCapabilities(Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.InvokeBuilder(Android.Telecom.PhoneAccountHandle, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.InvokeBuilder(Android.Telecom.PhoneAccountHandle, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.SupportsUriScheme(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.ToBuilder()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder..ctor(Android.Telecom.PhoneAccount)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder..ctor(Android.Telecom.PhoneAccountHandle, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder..ctor(Android.Telecom.PhoneAccountHandle, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.AddSupportedUriScheme(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetAddress(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetCapabilities(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetExtras(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetHighlightColor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetIcon(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetShortDescription(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetShortDescription(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetSubscriptionAddress(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccount.Builder.SetSupportedUriSchemes(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccountHandle' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccountHandle..ctor(Android.Content.ComponentName, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccountHandle..ctor(Android.Content.ComponentName, System.String, Android.OS.UserHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccountHandle.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.PhoneAccountHandle.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Disconnect()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Hold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Merge()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.PlayDtmfTone(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.RegisterCallback(Android.Telecom.RemoteConference.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.RegisterCallback(Android.Telecom.RemoteConference.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Separate(Android.Telecom.RemoteConnection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.SetCallAudioState(Android.Telecom.CallAudioState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.StopDtmfTone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Swap()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Unhold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.UnregisterCallback(Android.Telecom.RemoteConference.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnConferenceableConnectionsChanged(Android.Telecom.RemoteConference, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnConnectionAdded(Android.Telecom.RemoteConference, Android.Telecom.RemoteConnection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnConnectionCapabilitiesChanged(Android.Telecom.RemoteConference, Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnConnectionRemoved(Android.Telecom.RemoteConference, Android.Telecom.RemoteConnection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnDestroyed(Android.Telecom.RemoteConference)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnDisconnected(Android.Telecom.RemoteConference, Android.Telecom.DisconnectCause)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnExtrasChanged(Android.Telecom.RemoteConference, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConference.Callback.OnStateChanged(Android.Telecom.RemoteConference, Android.Telecom.CallState, Android.Telecom.CallState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Abort()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Answer()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Disconnect()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.GetVideoProvider()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Hold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.PlayDtmfTone(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.PostDialContinue(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.RegisterCallback(Android.Telecom.RemoteConnection.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.RegisterCallback(Android.Telecom.RemoteConnection.Callback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Reject()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.SetCallAudioState(Android.Telecom.CallAudioState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.StopDtmfTone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Unhold()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.UnregisterCallback(Android.Telecom.RemoteConnection.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnAddressChanged(Android.Telecom.RemoteConnection, Android.Net.Uri, Android.Telecom.Presentation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnCallerDisplayNameChanged(Android.Telecom.RemoteConnection, System.String, Android.Telecom.Presentation)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnConferenceableConnectionsChanged(Android.Telecom.RemoteConnection, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnConferenceChanged(Android.Telecom.RemoteConnection, Android.Telecom.RemoteConference)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnConnectionCapabilitiesChanged(Android.Telecom.RemoteConnection, Android.Telecom.ConnectionCapability)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnDestroyed(Android.Telecom.RemoteConnection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnDisconnected(Android.Telecom.RemoteConnection, Android.Telecom.DisconnectCause)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnExtrasChanged(Android.Telecom.RemoteConnection, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnPostDialChar(Android.Telecom.RemoteConnection, System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnPostDialWait(Android.Telecom.RemoteConnection, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnRingbackRequested(Android.Telecom.RemoteConnection, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnStateChanged(Android.Telecom.RemoteConnection, Android.Telecom.CallState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnStatusHintsChanged(Android.Telecom.RemoteConnection, Android.Telecom.StatusHints)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnVideoProviderChanged(Android.Telecom.RemoteConnection, Android.Telecom.RemoteConnection.VideoProvider)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnVideoStateChanged(Android.Telecom.RemoteConnection, Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.Callback.OnVoipAudioChanged(Android.Telecom.RemoteConnection, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.RegisterCallback(Android.Telecom.RemoteConnection.VideoProvider.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.RequestCallDataUsage()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.RequestCameraCapabilities()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SendSessionModifyRequest(Android.Telecom.VideoProfile, Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SendSessionModifyResponse(Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SetCamera(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SetDeviceOrientation(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SetDisplaySurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SetPauseImage(Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SetPreviewSurface(Android.Views.Surface)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.SetZoom(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.UnregisterCallback(Android.Telecom.RemoteConnection.VideoProvider.Callback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback.OnCallDataUsageChanged(Android.Telecom.RemoteConnection.VideoProvider, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback.OnCallSessionEvent(Android.Telecom.RemoteConnection.VideoProvider, Android.Telecom.VideoSessionEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback.OnCameraCapabilitiesChanged(Android.Telecom.RemoteConnection.VideoProvider, Android.Telecom.VideoProfile.CameraCapabilities)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback.OnPeerDimensionsChanged(Android.Telecom.RemoteConnection.VideoProvider, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback.OnSessionModifyRequestReceived(Android.Telecom.RemoteConnection.VideoProvider, Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback.OnSessionModifyResponseReceived(Android.Telecom.RemoteConnection.VideoProvider, Android.Telecom.VideoProfileState, Android.Telecom.VideoProfile, Android.Telecom.VideoProfile)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.RemoteConnection.VideoProvider.Callback.OnVideoQualityChanged(Android.Telecom.RemoteConnection.VideoProvider, Android.Telecom.VideoQuality)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.StatusHints' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.StatusHints..ctor(Java.Lang.ICharSequence, Android.Graphics.Drawables.Icon, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.StatusHints..ctor(System.String, Android.Graphics.Drawables.Icon, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.StatusHints.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.StatusHints.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.AddNewIncomingCall(Android.Telecom.PhoneAccountHandle, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.CreateManageBlockedNumbersIntent()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.GetAdnUriForPhoneAccount(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.GetDefaultOutgoingPhoneAccount(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.GetLine1Number(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.GetPhoneAccount(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.GetVoiceMailNumber(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.HandleMmi(System.String, Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.IsVoiceMailNumber(Android.Telecom.PhoneAccountHandle, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.PlaceCall(Android.Net.Uri, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.RegisterPhoneAccount(Android.Telecom.PhoneAccount)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.SilenceRinger()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.TelecomManager.UnregisterPhoneAccount(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile..ctor(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile..ctor(Android.Telecom.VideoProfileState, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.IsAudioOnly(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.IsBidirectional(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.IsPaused(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.IsReceptionEnabled(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.IsTransmissionEnabled(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.IsVideo(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.VideoStateToString(Android.Telecom.VideoProfileState)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.CameraCapabilities' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.CameraCapabilities..ctor(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.CameraCapabilities.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telecom.VideoProfile.CameraCapabilities.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.CarrierConfigManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.CarrierConfigManager.GetConfigForSubId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.CarrierConfigManager.NotifyConfigChangedForSubId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.PhoneNumberUtils.AddTtsSpan(Android.Text.ISpannable, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.PhoneNumberUtils.CreateTtsSpan(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.PhoneNumberUtils.CreateTtsSpannable(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.PhoneNumberUtils.CreateTtsSpannableFormatted(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.PhoneNumberUtils.FormatNumberToRFC3966(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SmsManager.GetSmsManagerForSubscriptionId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SmsManager.InjectSmsPdu(System.Byte[], System.String, Android.App.PendingIntent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Telephony.SmsMessage.CreateFromPdu(System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SmsMessage.CreateFromPdu(System.Byte[], System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionInfo.CreateIconBitmap(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionInfo.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionInfo.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.AddOnSubscriptionsChangedListener(Android.Telephony.SubscriptionManager.OnSubscriptionsChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.From(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.GetActiveSubscriptionInfo(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.GetActiveSubscriptionInfoForSimSlotIndex(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.IsNetworkRoaming(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.RemoveOnSubscriptionsChangedListener(Android.Telephony.SubscriptionManager.OnSubscriptionsChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.OnSubscriptionsChangedListener' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.OnSubscriptionsChangedListener..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.SubscriptionManager.OnSubscriptionsChangedListener.OnSubscriptionsChanged()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.CanChangeDtmfToneLength()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.CreateForSubscriptionId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.GetDeviceId(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.GetIccAuthentication(Android.Telephony.UiccApplicationType, Android.Telephony.AutheenticationType, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.GetVoicemailRingtoneUri(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.IsVoicemailVibrationEnabled(Android.Telecom.PhoneAccountHandle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.SetLine1NumberForDisplay(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.SetOperatorBrandOverride(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.SetPreferredNetworkTypeToGlobal()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Telephony.TelephonyManager.SetVoiceMailNumber(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.IFlakyTest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.InstrumentationTestRunner' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.IPerformanceTestCase' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.IsolatedContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.IUiThreadTest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.MoreAsserts' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.RenamingDelegatingContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.TouchUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.ViewAsserts' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Mock.MockApplication' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockContext.CheckSelfPermission(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockContext.CreateDeviceProtectedStorageContext()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockContext.DeleteSharedPreferences(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockContext.GetSystemServiceName(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockContext.MoveDatabaseFrom(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockContext.MoveSharedPreferencesFrom(Android.Content.Context, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Mock.MockCursor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Mock.MockCursor.Deactivate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockCursor.Extras.set(Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Mock.MockCursor.Requery()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Mock.MockDialogInterface' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager.GetAllIntentFilters(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager.GetDefaultBrowserPackageName(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager.GetPackageGids(System.String, Android.Content.PM.PackageInfoFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager.GetPackageUid(System.String, Android.Content.PM.PackageInfoFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager.HasSystemFeature(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager.IsPermissionRevokedByPolicy(System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Test.Mock.MockPackageManager.SetDefaultBrowserPackageName(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Mock.MockResources' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Suitebuilder.Annotation.ILargeTest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Suitebuilder.Annotation.IMediumTest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Suitebuilder.Annotation.ISmallTest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Suitebuilder.Annotation.ISmoke' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Test.Suitebuilder.Annotation.ISuppress' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Html.FromHtml(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.Html.FromHtml(System.String, Android.Text.FromHtmlOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.Html.FromHtml(System.String, Android.Text.FromHtmlOptions, Android.Text.Html.IImageGetter, Android.Text.Html.ITagHandler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Html.FromHtml(System.String, Android.Text.Html.IImageGetter, Android.Text.Html.ITagHandler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Html.ToHtml(Android.Text.ISpanned)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.Html.ToHtml(Android.Text.ISpanned, Android.Text.ToHtmlOptions)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.Build()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.Obtain(Java.Lang.ICharSequence, System.Int32, System.Int32, Android.Text.TextPaint, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.Obtain(System.String, System.Int32, System.Int32, Android.Text.TextPaint, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetAlignment(Android.Text.Layout.Alignment)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetBreakStrategy(Android.Text.BreakStrategy)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetEllipsize(Android.Text.TextUtils.TruncateAt)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetEllipsizedWidth(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetHyphenationFrequency(Android.Text.HyphenationFrequency)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetIncludePad(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetIndents(System.Int32[], System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetLineSpacing(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetMaxLines(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetText(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetText(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.StaticLayout.Builder.SetTextDirection(Android.Text.ITextDirectionHeuristic)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.TextUtils.GetReverse(System.String, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.TextUtils.GetReverseFormatted(Java.Lang.ICharSequence, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.TextUtils.IsGraphic(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time..ctor(Android.Text.Format.Time)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.After(Android.Text.Format.Time)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Before(Android.Text.Format.Time)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Clear(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Compare(Android.Text.Format.Time, Android.Text.Format.Time)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Format(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Format2445()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Format3339(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.GetActualMaximum(Android.Text.Format.TimeFormatValues)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.GetJulianDay(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.GetJulianMondayFromWeeksSinceEpoch(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.GetWeeksSinceEpochFromJulianDay(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.IsEpoch(Android.Text.Format.Time)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Normalize(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Parse(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Parse3339(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Set(Android.Text.Format.Time)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Set(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Set(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.Set(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.SetJulianDay(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.SetToNow()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.SwitchTimezone(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Text.Format.Time.ToMillis(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.Style.LocaleSpan..ctor(Android.OS.LocaleList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.Util.Linkify.AddLinks(Android.Text.ISpannable, Java.Util.Regex.Pattern, System.String, System.String[], Android.Text.Util.Linkify.IMatchFilter, Android.Text.Util.Linkify.ITransformFilter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Text.Util.Linkify.AddLinks(Android.Widget.TextView, Java.Util.Regex.Pattern, System.String, System.String[], Android.Text.Util.Linkify.IMatchFilter, Android.Text.Util.Linkify.ITransformFilter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Transitions.ChangeScroll' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Transitions.ChangeScroll..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Transitions.ChangeScroll..ctor(Android.Content.Context, Android.Util.IAttributeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Transitions.ChangeScroll.CaptureEndValues(Android.Transitions.TransitionValues)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Transitions.ChangeScroll.CaptureStartValues(Android.Transitions.TransitionValues)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Transitions.Transition.IsTransitionRequired(Android.Transitions.TransitionValues, Android.Transitions.TransitionValues)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Transitions.TransitionManager.EndTransitions(Android.Views.ViewGroup)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet..ctor(Android.Util.ArraySet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet..ctor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.Add(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.AddAll(Android.Util.ArraySet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.AddAll(System.Collections.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.Clear()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.Contains(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.ContainsAll(System.Collections.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.EnsureCapacity(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.IndexOf(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.Iterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.Remove(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.RemoveAll(Android.Util.ArraySet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.RemoveAll(System.Collections.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.RemoveAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.RetainAll(System.Collections.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.Size()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.ToArray()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.ToArray(Java.Lang.Object[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.ArraySet.ValueAt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.EventLog.WriteEvent(System.Int32, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.EventLog.WriteEventAsync(System.Int32, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Util.FloatMath' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.FloatProperty' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.FloatProperty..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.FloatProperty.Set(Java.Lang.Object, Java.Lang.Float)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.FloatProperty.SetValue(Java.Lang.Object, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.IntProperty' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.IntProperty..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.IntProperty.Set(Java.Lang.Object, Java.Lang.Integer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Util.IntProperty.SetValue(Java.Lang.Object, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.AbsSavedState..ctor(Android.OS.Parcel, Java.Lang.ClassLoader)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ActionMode.Hide(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ActionMode.InvalidateContentRect()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ActionMode.OnWindowFocusChanged(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ActionMode.Type.set(Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ActionMode.Callback2' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ActionMode.Callback2..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ActionMode.Callback2.OnGetContentRect(Android.Views.ActionMode, Android.Views.View, Android.Graphics.Rect)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ContextThemeWrapper..ctor(Android.Content.Context, Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.GetHdrCapabilities()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.GetMode()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.GetSupportedModes()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.HdrCapabilities' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.HdrCapabilities.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.HdrCapabilities.GetSupportedHdrTypes()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.HdrCapabilities.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.Mode' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.Mode.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Display.Mode.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.DragAndDropPermissions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.DragAndDropPermissions.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.DragAndDropPermissions.Release()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.DragAndDropPermissions.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.FrameMetrics' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.FrameMetrics..ctor(Android.Views.FrameMetrics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.FrameMetrics.GetMetric(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.GestureDetector.OnGenericMotionEvent(Android.Views.MotionEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.GestureDetector.SetContextClickListener(Android.Views.GestureDetector.IOnContextClickListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.GestureDetector.IOnContextClickListener.OnContextClick(Android.Views.MotionEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.GestureDetector.SimpleOnGestureListener.OnContextClick(Android.Views.MotionEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.IViewParent.OnNestedPrePerformAccessibilityAction(Android.Views.View, Android.Views.Accessibility.Action, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.IViewParent.ShowContextMenuForChild(Android.Views.View, System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.IViewParent.StartActionModeForChild(Android.Views.View, Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup..ctor(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup..ctor(Java.Lang.ICharSequence, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup..ctor(System.String, System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup.AddItem(Android.Views.KeyboardShortcutInfo)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutGroup.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutInfo..ctor(Java.Lang.ICharSequence, Android.Views.Keycode, Android.Views.MetaKeyStates)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutInfo..ctor(Java.Lang.ICharSequence, System.Char, Android.Views.MetaKeyStates)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutInfo..ctor(System.String, Android.Views.Keycode, Android.Views.MetaKeyStates)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutInfo..ctor(System.String, System.Char, Android.Views.MetaKeyStates)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutInfo.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.KeyboardShortcutInfo.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PixelCopy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PixelCopy.Request(Android.Views.Surface, Android.Graphics.Bitmap, Android.Views.PixelCopy.IOnPixelCopyFinishedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PixelCopy.Request(Android.Views.SurfaceView, Android.Graphics.Bitmap, Android.Views.PixelCopy.IOnPixelCopyFinishedListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PixelCopy.IOnPixelCopyFinishedListener.OnPixelCopyFinished(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PointerIcon' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PointerIcon.Create(Android.Graphics.Bitmap, System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PointerIcon.DescribeContents()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PointerIcon.GetSystemIcon(Android.Content.Context, Android.Views.PointerIconType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PointerIcon.Load(Android.Content.Res.Resources, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.PointerIcon.WriteToParcel(Android.OS.Parcel, Android.OS.ParcelableWriteFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ScaleGestureDetector.StylusScaleEnabled.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.SearchEvent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.SearchEvent..ctor(Android.Views.InputDevice)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Surface.LockHardwareCanvas()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.AccessibilityTraversalAfter.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.AccessibilityTraversalBefore.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.CancelDragAndDrop()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.ContextClickable.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.DispatchDrawableHotspotChanged(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.DispatchFinishTemporaryDetach()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.DispatchNestedPrePerformAccessibilityAction(Android.Views.Accessibility.Action, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.DispatchProvideStructure(Android.Views.ViewStructure)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.DispatchStartTemporaryDetach()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.ForceHasOverlappingRendering(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.Foreground.set(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.ForegroundTintList.set(Android.Content.Res.ColorStateList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.ForegroundTintMode.set(Android.Graphics.PorterDuff.Mode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.GetClipBounds(Android.Graphics.Rect)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.GetHasOverlappingRendering()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.OnDrawForeground(Android.Graphics.Canvas)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.OnProvideStructure(Android.Views.ViewStructure)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.OnProvideVirtualStructure(Android.Views.ViewStructure)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.OnResolvePointerIcon(Android.Views.MotionEvent, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.OnVisibilityAggregated(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.PerformContextClick()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.PerformContextClick(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.PerformLongClick(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.PointerIcon.set(Android.Views.PointerIcon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.SetForegroundGravity(Android.Views.GravityFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.SetOnContextClickListener(Android.Views.View.IOnContextClickListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.SetOnScrollChangeListener(Android.Views.View.IOnScrollChangeListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.SetScrollIndicators(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.SetScrollIndicators(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.ShowContextMenu(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.StartActionMode(Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Views.View.StartDrag(Android.Content.ClipData, Android.Views.View.DragShadowBuilder, Java.Lang.Object, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.StartDragAndDrop(Android.Content.ClipData, Android.Views.View.DragShadowBuilder, Java.Lang.Object, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.UpdateDragShadow(Android.Views.View.DragShadowBuilder)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.BaseSavedState..ctor(Android.OS.Parcel, Java.Lang.ClassLoader)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.IOnContextClickListener.OnContextClick(Android.Views.View)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.View.IOnScrollChangeListener.OnScrollChange(Android.Views.View, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewGroup.OnNestedPrePerformAccessibilityAction(Android.Views.View, Android.Views.Accessibility.Action, Android.OS.Bundle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewGroup.OnViewAdded(Android.Views.View)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewGroup.OnViewRemoved(Android.Views.View)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewGroup.ShowContextMenuForChild(Android.Views.View, System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewGroup.StartActionModeForChild(Android.Views.View, Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.AddChildCount(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.AsyncCommit()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.AsyncNewChild(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.ChildCount.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.ChildCount.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.Extras.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.HasExtras.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.HintFormatted.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.HintFormatted.set(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.NewChild(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetAccessibilityFocused(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetActivated(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetAlpha(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetCheckable(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetChecked(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetClassName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetClickable(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetContentDescription(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetContentDescription(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetContextClickable(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetDimens(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetElevation(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetEnabled(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetFocusable(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetFocused(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetId(System.Int32, System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetLongClickable(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetSelected(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetText(Java.Lang.ICharSequence, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetText(System.String, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetTextLines(System.Int32[], System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetTextStyle(System.Single, System.Int32, System.Int32, Android.App.Assist.AssistTextStyle)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetTransformation(Android.Graphics.Matrix)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.SetVisibility(Android.Views.ViewStates)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.TextFormatted.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.TextFormatted.set(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.TextSelectionEnd.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.ViewStructure.TextSelectionStart.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.AddOnFrameMetricsAvailableListener(Android.Views.Window.IOnFrameMetricsAvailableListener, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.GetDefaultFeatures(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.RemoveOnFrameMetricsAvailableListener(Android.Views.Window.IOnFrameMetricsAvailableListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.SetClipToOutline(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.SetDecorCaptionShade(Android.Views.DecorCaptionShade)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.SetElevation(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.SetResizingCaptionDrawable(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.SetRestrictedCaptionAreaListener(Android.Views.Window.IOnRestrictedCaptionAreaChangedListener)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.SetSustainedPerformanceMode(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.ICallback.OnProvideKeyboardShortcuts(System.Collections.Generic.IList, Android.Views.IMenu, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.ICallback.OnSearchRequested(Android.Views.SearchEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.ICallback.OnWindowStartingActionMode(Android.Views.ActionMode.ICallback, Android.Views.ActionModeType)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.IOnFrameMetricsAvailableListener.OnFrameMetricsAvailable(Android.Views.Window, Android.Views.FrameMetrics, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Window.IOnRestrictedCaptionAreaChangedListener.OnRestrictedCaptionAreaChanged(Android.Graphics.Rect)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Accessibility.AccessibilityNodeInfo.ContextClickable.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Accessibility.AccessibilityNodeInfo.DrawingOrder.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Accessibility.AccessibilityNodeInfo.ImportantForAccessibility.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Accessibility.AccessibilityNodeInfo.SetTraversalAfter(Android.Views.View)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Accessibility.AccessibilityNodeInfo.SetTraversalAfter(Android.Views.View, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Accessibility.AccessibilityNodeInfo.SetTraversalBefore(Android.Views.View)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Accessibility.AccessibilityNodeInfo.SetTraversalBefore(Android.Views.View, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Animations.BaseInterpolator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.Animations.BaseInterpolator..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.BaseInputConnection.CloseConnection()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.BaseInputConnection.DeleteSurroundingTextInCodePoints(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.IInputConnection.CloseConnection()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.IInputConnection.DeleteSurroundingTextInCodePoints(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.IInputConnection.Handler.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.InputConnectionWrapper.CloseConnection()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.InputConnectionWrapper.DeleteSurroundingTextInCodePoints(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.InputMethodManager.DispatchKeyEventFromInputMethod(Android.Views.View, Android.Views.KeyEvent)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Views.InputMethods.InputMethodSubtype.InputMethodSubtypeBuilder.SetLanguageTag(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Views.TextService.SpellCheckerSubtype..ctor(System.Int32, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.CookieManager..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.IWebResourceRequest.IsRedirect.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerClient' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerClient..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerClient.ShouldInterceptRequest(Android.Webkit.IWebResourceRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerController' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerController..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerController.ServiceWorkerWebSettings.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerController.SetServiceWorkerClient(Android.Webkit.ServiceWorkerClient)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.AllowContentAccess.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.AllowContentAccess.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.AllowFileAccess.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.AllowFileAccess.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.BlockNetworkLoads.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.BlockNetworkLoads.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.CacheMode.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.ServiceWorkerWebSettings.CacheMode.set(Android.Webkit.CacheModes)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebBackForwardList..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebBackForwardList.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebHistoryItem..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebHistoryItem.Clone()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebIconDatabase..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessage' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessage..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessage..ctor(System.String, Android.Webkit.WebMessagePort[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessage.GetPorts()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort.PostMessage(Android.Webkit.WebMessage)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort.SetWebMessageCallback(Android.Webkit.WebMessagePort.WebMessageCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort.SetWebMessageCallback(Android.Webkit.WebMessagePort.WebMessageCallback, Android.OS.Handler)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort.WebMessageCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort.WebMessageCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebMessagePort.WebMessageCallback.OnMessage(Android.Webkit.WebMessagePort, Android.Webkit.WebMessage)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebResourceError' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebResourceError.DescriptionFormatted.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebResourceError.ErrorCode.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebSettings..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebSettings.DisabledActionModeMenuItems.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebSettings.DisabledActionModeMenuItems.set(Android.Webkit.MenuItems)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebSettings.OffscreenPreRaster.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebSettings.OffscreenPreRaster.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Webkit.WebSettings.SetGeolocationDatabasePath(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebView.CreateWebMessageChannel()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Webkit.WebView.OverlayHorizontalScrollbar()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Webkit.WebView.OverlayVerticalScrollbar()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebView.PostVisualStateCallback(System.Int64, Android.Webkit.WebView.VisualStateCallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebView.PostWebMessage(Android.Webkit.WebMessage, Android.Net.Uri)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Webkit.WebView.SetHorizontalScrollbarOverlay(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Webkit.WebView.SetVerticalScrollbarOverlay(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebView.VisualStateCallback' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebView.VisualStateCallback..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebView.VisualStateCallback.OnComplete(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebViewClient.OnPageCommitVisible(Android.Webkit.WebView, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Webkit.WebViewClient.OnReceivedError(Android.Webkit.WebView, Android.Webkit.ClientError, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebViewClient.OnReceivedError(Android.Webkit.WebView, Android.Webkit.IWebResourceRequest, Android.Webkit.WebResourceError)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebViewClient.OnReceivedHttpError(Android.Webkit.WebView, Android.Webkit.IWebResourceRequest, Android.Webkit.WebResourceResponse)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebViewClient.ShouldOverrideUrlLoading(Android.Webkit.WebView, Android.Webkit.IWebResourceRequest)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Webkit.WebViewClient.ShouldOverrideUrlLoading(Android.Webkit.WebView, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Webkit.WebViewDatabase..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.AbsSeekBar.TickMark.set(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.AbsSeekBar.TickMarkTintList.set(Android.Content.Res.ColorStateList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.AbsSeekBar.TickMarkTintMode.set(Android.Graphics.PorterDuff.Mode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.ActionMenuView.OverflowIcon.set(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock..ctor(Android.Content.Context)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock..ctor(Android.Content.Context, Android.Util.IAttributeSet)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock..ctor(Android.Content.Context, Android.Util.IAttributeSet, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock..ctor(Android.Content.Context, Android.Util.IAttributeSet, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock.SetDial(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock.SetHourHand(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock.SetMinuteHand(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.AnalogClock.SetSecondHand(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.ArrayAdapter.DropDownViewTheme.set(Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.AutoCompleteTextView..ctor(Android.Content.Context, Android.Util.IAttributeSet, System.Int32, System.Int32, Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.CalendarView.SetSelectedDateVerticalBar(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Chronometer.CountDown.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.CursorAdapter.DropDownViewTheme.set(Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.ImageView.SetImageIcon(Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.IThemedSpinnerAdapter.DropDownViewTheme.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.IThemedSpinnerAdapter.DropDownViewTheme.set(Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.ListPopupWindow.SetWindowLayoutType(Android.Views.WindowManagerTypes)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupMenu..ctor(Android.Content.Context, Android.Views.View, Android.Views.GravityFlags, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupMenu.Gravity.set(Android.Views.GravityFlags)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupWindow.AttachedInDecor.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupWindow.GetMaxAvailableHeight(Android.Views.View, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupWindow.OverlapAnchor.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupWindow.SetEnterTransition(Android.Transitions.Transition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupWindow.SetExitTransition(Android.Transitions.Transition)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.PopupWindow.SetWindowLayoutMode(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.PopupWindow.WindowLayoutType.set(Android.Views.WindowManagerTypes)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.ProgressBar.SetProgress(System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.QuickContactBadge.SetPrioritizedMimeType(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.RelativeLayout.LayoutParams.GetRule(Android.Widget.LayoutRules)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.RemoteViews.SetAccessibilityTraversalAfter(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.RemoteViews.SetAccessibilityTraversalBefore(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.RemoteViews.SetChronometerCountDown(System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.RemoteViews.SetIcon(System.Int32, System.String, Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.RemoteViews.SetImageViewIcon(System.Int32, Android.Graphics.Drawables.Icon)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.SimpleAdapter.DropDownViewTheme.set(Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Spinner..ctor(Android.Content.Context, Android.Util.IAttributeSet, System.Int32, System.Int32, Android.Widget.SpinnerMode, Android.Content.Res.Resources.Theme)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Switch.ThumbTintList.set(Android.Content.Res.ColorStateList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Switch.ThumbTintMode.set(Android.Graphics.PorterDuff.Mode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Switch.TrackTintList.set(Android.Content.Res.ColorStateList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Switch.TrackTintMode.set(Android.Graphics.PorterDuff.Mode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.BreakStrategy.set(Android.Text.BreakStrategy)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.CompoundDrawableTintList.set(Android.Content.Res.ColorStateList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.CompoundDrawableTintMode.set(Android.Graphics.PorterDuff.Mode)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.CustomInsertionActionModeCallback.set(Android.Views.ActionMode.ICallback)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.HyphenationFrequency.set(Android.Text.HyphenationFrequency)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.ImeHintLocales.set(Android.OS.LocaleList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Android.Widget.TextView.SetTextAppearance(Android.Content.Context, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.SetTextAppearance(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TextView.TextLocales.set(Android.OS.LocaleList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TimePicker.Hour.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.TimePicker.Minute.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.ContentInsetEndWithActions.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.ContentInsetStartWithNavigation.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.OverflowIcon.set(Android.Graphics.Drawables.Drawable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.SetTitleMargin(System.Int32, System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.TitleMarginBottom.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.TitleMarginEnd.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.TitleMarginStart.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Android.Widget.Toolbar.TitleMarginTop.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Awt.Font.NumericShaper.Shape(System.Char[], System.Int32, System.Int32, Java.Awt.Font.NumericShaper.Range)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Awt.Font.NumericShaper.Range' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Awt.Font.NumericShaper.Range.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Awt.Font.NumericShaper.Range.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.IO.UncheckedIOException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.IO.UncheckedIOException..ctor(Java.IO.IOException)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.IO.UncheckedIOException..ctor(System.String, Java.IO.IOException)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Boolean.HashCode(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Boolean.LogicalAnd(System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Boolean.LogicalOr(System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Boolean.LogicalXor(System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Byte.HashCode(System.SByte)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Character.HashCode(System.Char)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Character.UnicodeScript' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Character.UnicodeScript.ForName(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Character.UnicodeScript.Of(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Character.UnicodeScript.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Character.UnicodeScript.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Class.GetAnnotationsByType(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Class.GetDeclaredAnnotation(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.ClassLoader.RegisterAsParallelCapable()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Double.HashCode(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Double.IsFinite(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Double.Max(System.Double, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Double.Min(System.Double, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Double.Sum(System.Double, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Error..ctor(System.String, Java.Lang.Throwable, System.Boolean, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Float.HashCode(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Float.IsFinite(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Float.Max(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Float.Min(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Float.Sum(System.Single, System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.IIterable.ForEach(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.IIterable.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Integer.HashCode(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Integer.Max(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Integer.Min(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Integer.Sum(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.InternalError..ctor(Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.InternalError..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Long.HashCode(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Long.Max(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Long.Min(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Long.Sum(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.AddExact(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.AddExact(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.DecrementExact(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.DecrementExact(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.FloorDiv(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.FloorDiv(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.FloorMod(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.FloorMod(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.IncrementExact(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.IncrementExact(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.MultiplyExact(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.MultiplyExact(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.NegateExact(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.NegateExact(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.NextDown(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.NextDown(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.SubtractExact(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.SubtractExact(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Math.ToIntExact(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Package.GetAnnotationsByType(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Package.GetDeclaredAnnotation(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Package.GetDeclaredAnnotationsByType(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Short.HashCode(System.Int16)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.AddExact(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.AddExact(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.FloorDiv(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.FloorDiv(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.FloorMod(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.FloorMod(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.MultiplyExact(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.MultiplyExact(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.NextDown(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.NextDown(System.Single)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.SubtractExact(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.SubtractExact(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.StrictMath.ToIntExact(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.VirtualMachineError..ctor(Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.VirtualMachineError..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Annotation.IRepeatable.Value()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Reflect.Constructor.IsAnnotationPresent(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Reflect.Field.IsAnnotationPresent(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Reflect.IAnnotatedElement.GetAnnotationsByType(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Reflect.IAnnotatedElement.GetDeclaredAnnotation(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Lang.Reflect.IAnnotatedElement.GetDeclaredAnnotationsByType(Java.Lang.Class)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.HttpCookie.HttpOnly.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.IProtocolFamily.Name()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.ISocketOption.Name()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.ISocketOption.Type()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.StandardProtocolFamily' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.StandardProtocolFamily.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.StandardProtocolFamily.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.StandardSocketOptions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.URLClassLoader.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Net.URLConnection.GetHeaderFieldLong(System.String, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.AlreadyBoundException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.AlreadyBoundException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.DatagramChannel.Bind(Java.Net.SocketAddress)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.DatagramChannel.Open(Java.Net.IProtocolFamily)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.DatagramChannel.RemoteAddress.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.DatagramChannel.SetOption(Java.Net.ISocketOption, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.FileLock.AcquiredBy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ISeekableByteChannel.Position()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ISeekableByteChannel.Position(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ISeekableByteChannel.Read(Java.Nio.ByteBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ISeekableByteChannel.Size()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ISeekableByteChannel.Truncate(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ISeekableByteChannel.Write(Java.Nio.ByteBuffer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ServerSocketChannel.Bind(Java.Net.SocketAddress)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ServerSocketChannel.Bind(Java.Net.SocketAddress, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.ServerSocketChannel.SetOption(Java.Net.ISocketOption, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.SocketChannel.Bind(Java.Net.SocketAddress)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.SocketChannel.RemoteAddress.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.SocketChannel.SetOption(Java.Net.ISocketOption, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.SocketChannel.ShutdownInput()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.SocketChannel.ShutdownOutput()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Nio.Channels.Spi.SelectorProvider.OpenDatagramChannel(Java.Net.IProtocolFamily)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.CryptoPrimitive' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.CryptoPrimitive.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.CryptoPrimitive.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.IAlgorithmConstraints.Permits(System.Collections.Generic.ICollection, Java.Security.IKey)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.IAlgorithmConstraints.Permits(System.Collections.Generic.ICollection, System.String, Java.Security.AlgorithmParameters)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.IAlgorithmConstraints.Permits(System.Collections.Generic.ICollection, System.String, Java.Security.IKey, Java.Security.AlgorithmParameters)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Provider.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertificateRevokedException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertificateRevokedException..ctor(Java.Util.Date, Java.Security.Cert.CRLReason, Javax.Security.Auth.X500.X500Principal, System.Collections.Generic.IDictionary)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertPathBuilderSpi.EngineGetRevocationChecker()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertPathValidatorException..ctor(System.String, Java.Lang.Throwable, Java.Security.Cert.CertPath, System.Int32, Java.Security.Cert.CertPathValidatorException.IReason)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertPathValidatorException.BasicReason' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertPathValidatorException.BasicReason.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertPathValidatorException.BasicReason.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CertPathValidatorSpi.EngineGetRevocationChecker()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CRLReason' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CRLReason.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.CRLReason.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.ICertPathChecker.Check(Java.Security.Cert.Certificate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.ICertPathChecker.Init(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.ICertPathChecker.IsForwardCheckingSupported.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.IExtension.Encode(System.IO.Stream)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.IExtension.GetValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.IExtension.Id.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.IExtension.IsCritical.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXCertPathChecker.Check(Java.Security.Cert.Certificate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXReason' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXReason.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXReason.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.OcspExtensions.set(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.OcspResponder.set(Java.Net.URI)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.OcspResponderCert.set(Java.Security.Cert.X509Certificate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.OcspResponses.set(System.Collections.Generic.IDictionary)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.Options.set(System.Collections.Generic.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.SoftFailExceptions.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.Option' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.Option.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.PKIXRevocationChecker.Option.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Security.Cert.X509Certificate.Verify(Java.Security.IPublicKey, Java.Security.Provider)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ArrayDeque.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ArrayList.ForEach(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ArrayList.RemoveIf(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ArrayList.ReplaceAll(Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ArrayList.Sort(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ArrayList.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(Java.Lang.Object[], Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(Java.Lang.Object[], System.Int32, System.Int32, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(System.Double[], Java.Util.Functions.IDoubleBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(System.Double[], System.Int32, System.Int32, Java.Util.Functions.IDoubleBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(System.Int32[], Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(System.Int32[], System.Int32, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(System.Int64[], Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelPrefix(System.Int64[], System.Int32, System.Int32, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSetAll(Java.Lang.Object[], Java.Util.Functions.IIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSetAll(System.Double[], Java.Util.Functions.IIntToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSetAll(System.Int32[], Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSetAll(System.Int64[], Java.Util.Functions.IIntToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(Java.Lang.Object[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(Java.Lang.Object[], Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(Java.Lang.Object[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(Java.Lang.Object[], System.Int32, System.Int32, Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Byte[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Char[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Char[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Double[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Double[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Int16[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Int16[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Int32[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Int32[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Int64[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Int64[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Single[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.ParallelSort(System.Single[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.SetAll(Java.Lang.Object[], Java.Util.Functions.IIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.SetAll(System.Double[], Java.Util.Functions.IIntToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.SetAll(System.Int32[], Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.SetAll(System.Int64[], Java.Util.Functions.IIntToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.Spliterator(Java.Lang.Object[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Arrays.Spliterator(Java.Lang.Object[], System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Calendar.SetWeekDate(System.Int32, System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.Comparing(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.Comparing(Java.Util.Functions.IFunction, Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.ComparingDouble(Java.Util.Functions.IToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.ComparingInt(Java.Util.Functions.IToIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.ComparingLong(Java.Util.Functions.IToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.NaturalOrder()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.NullsFirst(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.NullsLast(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Comparator.ReverseOrder()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.DoubleSummaryStatistics' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.DoubleSummaryStatistics..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.DoubleSummaryStatistics.Accept(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.DoubleSummaryStatistics.Combine(Java.Util.DoubleSummaryStatistics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.EventListenerProxy..ctor(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.HashMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.HashMap.Replace(Java.Lang.Object, Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.HashMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.HashSet.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.Compute(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.ComputeIfAbsent(Java.Lang.Object, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.ComputeIfPresent(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.GetOrDefault(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.Merge(Java.Lang.Object, Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.PutIfAbsent(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.Remove(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.Replace(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.Replace(Java.Lang.Object, Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Hashtable.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ICollection.Java.Lang.IIterable.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ICollection.RemoveIf(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.Comparing(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.Comparing(Java.Util.Functions.IFunction, Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ComparingDouble(Java.Util.Functions.IToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ComparingInt(Java.Util.Functions.IToIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ComparingLong(Java.Util.Functions.IToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.NaturalOrder()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.NullsFirst(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.NullsLast(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.Reversed()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ReverseOrder()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ThenComparing(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ThenComparing(Java.Util.Functions.IFunction, Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ThenComparing(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ThenComparingDouble(Java.Util.Functions.IToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ThenComparingInt(Java.Util.Functions.IToIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IComparator.ThenComparingLong(Java.Util.Functions.IToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IdentityHashMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IdentityHashMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IIterator.ForEachRemaining(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IList.Java.Lang.IIterable.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IList.ReplaceAll(Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IList.Sort(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.Compute(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.ComputeIfAbsent(Java.Lang.Object, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.ComputeIfPresent(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.GetOrDefault(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.Merge(Java.Lang.Object, Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.PutIfAbsent(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.Remove(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.Replace(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.Replace(Java.Lang.Object, Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMapEntry.ComparingByKey()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMapEntry.ComparingByKey(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMapEntry.ComparingByValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IMapEntry.ComparingByValue(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IntSummaryStatistics' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IntSummaryStatistics..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IntSummaryStatistics.Accept(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IntSummaryStatistics.Combine(Java.Util.IntSummaryStatistics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIterator.ForEachRemaining(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfDouble.ForEachRemaining(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfDouble.ForEachRemaining(Java.Util.Functions.IDoubleConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfDouble.Java.Util.IIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfDouble.NextDouble()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfInt.ForEachRemaining(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfInt.ForEachRemaining(Java.Util.Functions.IIntConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfInt.Java.Util.IIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfInt.NextInt()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfLong.ForEachRemaining(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfLong.ForEachRemaining(Java.Util.Functions.ILongConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfLong.Java.Util.IIterator.Next()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.IPrimitiveIteratorOfLong.NextLong()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISet.Java.Lang.IIterable.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISortedMap.EntrySet()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISortedMap.KeySet()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISortedMap.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISortedSet.Java.Lang.IIterable.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISpliterator.Characteristics()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISpliterator.EstimateSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISpliterator.ForEachRemaining(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISpliterator.HasCharacteristics(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISpliterator.TryAdvance(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.ISpliterator.TrySplit()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.LinkedList.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Locale.GetDefault(Java.Util.Locale.Category)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Locale.SetDefault(Java.Util.Locale.Category, Java.Util.Locale)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Locale.Category' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Locale.Category.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Locale.Category.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.LongSummaryStatistics' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.LongSummaryStatistics..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.LongSummaryStatistics.Accept(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.LongSummaryStatistics.Accept(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.LongSummaryStatistics.Combine(Java.Util.LongSummaryStatistics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.MapEntry.ComparingByKey()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.MapEntry.ComparingByKey(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.MapEntry.ComparingByValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.MapEntry.ComparingByValue(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Objects.IsNull(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Objects.NonNull(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Objects.RequireNonNull(Java.Lang.Object, Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.Empty()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.Filter(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.FlatMap(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.Get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.IfPresent(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.Map(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.Of(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.OfNullable(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.OrElse(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.OrElseGet(Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Optional.OrElseThrow(Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalDouble' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalDouble.Empty()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalDouble.IfPresent(Java.Util.Functions.IDoubleConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalDouble.Of(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalDouble.OrElse(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalDouble.OrElseGet(Java.Util.Functions.IDoubleSupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalDouble.OrElseThrow(Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalInt' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalInt.Empty()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalInt.IfPresent(Java.Util.Functions.IIntConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalInt.Of(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalInt.OrElse(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalInt.OrElseGet(Java.Util.Functions.IIntSupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalInt.OrElseThrow(Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalLong' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalLong.Empty()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalLong.IfPresent(Java.Util.Functions.ILongConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalLong.Of(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalLong.OrElse(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalLong.OrElseGet(Java.Util.Functions.ILongSupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.OptionalLong.OrElseThrow(Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.PriorityQueue..ctor(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.PriorityQueue.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.EmptySpliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.Iterator(Java.Util.ISpliterator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.Spliterator(Java.Lang.Object[], Java.Util.SpliteratorCharacteristics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.Spliterator(Java.Lang.Object[], System.Int32, System.Int32, Java.Util.SpliteratorCharacteristics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.Spliterator(Java.Util.IIterator, System.Int64, Java.Util.SpliteratorCharacteristics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.Spliterator(System.Collections.ICollection, Java.Util.SpliteratorCharacteristics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.SpliteratorUnknownSize(Java.Util.IIterator, Java.Util.SpliteratorCharacteristics)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractDoubleSpliterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractDoubleSpliterator..ctor(System.Int64, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractDoubleSpliterator.Characteristics()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractDoubleSpliterator.EstimateSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractIntSpliterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractIntSpliterator..ctor(System.Int64, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractIntSpliterator.Characteristics()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractIntSpliterator.EstimateSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractLongSpliterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractLongSpliterator..ctor(System.Int64, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractLongSpliterator.Characteristics()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractLongSpliterator.EstimateSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractSpliterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractSpliterator..ctor(System.Int64, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractSpliterator.Characteristics()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractSpliterator.EstimateSize()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Spliterators.AbstractSpliterator.TrySplit()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom..ctor(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextBoolean()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextDouble()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextDouble(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextDouble(System.Double, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextInt()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextInt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextInt(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextLong()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextLong(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.NextLong(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.SplittableRandom.Split()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner..ctor(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner..ctor(Java.Lang.ICharSequence, Java.Lang.ICharSequence, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner..ctor(System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner.Add(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner.Add(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner.Length()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner.Merge(Java.Util.StringJoiner)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner.SetEmptyValue(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.StringJoiner.SetEmptyValue(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.TimeZone.ObservesDaylightTime()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.TreeMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.TreeMap.Replace(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.TreeMap.Replace(Java.Lang.Object, Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.TreeMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.TreeSet.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Vector.ForEach(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Vector.RemoveIf(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Vector.ReplaceAll(Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Vector.Sort(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Vector.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.WeakHashMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.WeakHashMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ArrayBlockingQueue.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.AcceptEither(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.AcceptEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.AcceptEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.AllOf(Java.Util.Concurrent.CompletableFuture[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.AnyOf(Java.Util.Concurrent.CompletableFuture[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ApplyToEither(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ApplyToEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ApplyToEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.Cancel(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.Complete(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.CompletedFuture(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.CompleteExceptionally(Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.Exceptionally(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.Get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.Get(System.Int64, Java.Util.Concurrent.TimeUnit)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.GetNow(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.Handle(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.HandleAsync(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.HandleAsync(Java.Util.Functions.IBiFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.Join()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ObtrudeException(Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ObtrudeValue(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAfterBoth(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAfterBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAfterBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAfterEither(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAfterEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAfterEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAsync(Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.RunAsync(Java.Lang.IRunnable, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.SupplyAsync(Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.SupplyAsync(Java.Util.Functions.ISupplier, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenAccept(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenAcceptAsync(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenAcceptAsync(Java.Util.Functions.IConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenAcceptBoth(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenAcceptBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenAcceptBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenApply(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenApplyAsync(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenApplyAsync(Java.Util.Functions.IFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenCombine(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenCombineAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenCombineAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenCompose(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenComposeAsync(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenComposeAsync(Java.Util.Functions.IFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenRun(Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenRunAsync(Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ThenRunAsync(Java.Lang.IRunnable, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.ToCompletableFuture()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.WhenComplete(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.WhenCompleteAsync(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletableFuture.WhenCompleteAsync(Java.Util.Functions.IBiConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletionException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletionException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletionException..ctor(Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletionException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CompletionException..ctor(System.String, Java.Lang.Throwable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.Compute(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ComputeIfAbsent(Java.Lang.Object, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ComputeIfPresent(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEach(System.Int64, Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEach(System.Int64, Java.Util.Functions.IBiFunction, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEachEntry(System.Int64, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEachEntry(System.Int64, Java.Util.Functions.IFunction, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEachKey(System.Int64, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEachKey(System.Int64, Java.Util.Functions.IFunction, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEachValue(System.Int64, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ForEachValue(System.Int64, Java.Util.Functions.IFunction, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.GetOrDefault(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.MappingCount()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.Merge(Java.Lang.Object, Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.Reduce(System.Int64, Java.Util.Functions.IBiFunction, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceEntries(System.Int64, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceEntries(System.Int64, Java.Util.Functions.IFunction, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceEntriesToDouble(System.Int64, Java.Util.Functions.IToDoubleFunction, System.Double, Java.Util.Functions.IDoubleBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceEntriesToInt(System.Int64, Java.Util.Functions.IToIntFunction, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceEntriesToLong(System.Int64, Java.Util.Functions.IToLongFunction, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceKeys(System.Int64, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceKeys(System.Int64, Java.Util.Functions.IFunction, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceKeysToDouble(System.Int64, Java.Util.Functions.IToDoubleFunction, System.Double, Java.Util.Functions.IDoubleBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceKeysToInt(System.Int64, Java.Util.Functions.IToIntFunction, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceKeysToLong(System.Int64, Java.Util.Functions.IToLongFunction, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceToDouble(System.Int64, Java.Util.Functions.IToDoubleBiFunction, System.Double, Java.Util.Functions.IDoubleBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceToInt(System.Int64, Java.Util.Functions.IToIntBiFunction, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceToLong(System.Int64, Java.Util.Functions.IToLongBiFunction, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceValues(System.Int64, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceValues(System.Int64, Java.Util.Functions.IFunction, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceValuesToDouble(System.Int64, Java.Util.Functions.IToDoubleFunction, System.Double, Java.Util.Functions.IDoubleBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceValuesToInt(System.Int64, Java.Util.Functions.IToIntFunction, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReduceValuesToLong(System.Int64, Java.Util.Functions.IToLongFunction, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.Search(System.Int64, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.SearchEntries(System.Int64, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.SearchKeys(System.Int64, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentHashMap.SearchValues(System.Int64, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentLinkedDeque.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentLinkedQueue.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentSkipListMap.Compute(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentSkipListMap.ComputeIfAbsent(Java.Lang.Object, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentSkipListMap.ComputeIfPresent(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentSkipListMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentSkipListMap.GetOrDefault(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentSkipListMap.Merge(Java.Lang.Object, Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ConcurrentSkipListMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CopyOnWriteArrayList.ForEach(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CopyOnWriteArrayList.ReplaceAll(Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CopyOnWriteArrayList.Sort(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CopyOnWriteArraySet.ForEach(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CopyOnWriteArraySet.RemoveIf(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CopyOnWriteArraySet.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter..ctor(Java.Util.Concurrent.CountedCompleter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter..ctor(Java.Util.Concurrent.CountedCompleter, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.AddToPendingCount(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.CompareAndSetPendingCount(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.Complete(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.Compute()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.DecrementPendingCountUnlessZero()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.Exec()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.FirstComplete()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.HelpComplete(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.NextComplete()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.OnCompletion(Java.Util.Concurrent.CountedCompleter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.OnExceptionalCompletion(Java.Lang.Throwable, Java.Util.Concurrent.CountedCompleter)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.PendingCount.set(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.PropagateCompletion()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.QuietlyCompleteRoot()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.SetRawResult(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.CountedCompleter.TryComplete()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Executors.NewWorkStealingPool()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Executors.NewWorkStealingPool(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ForkJoinPool.CommonPool()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ForkJoinTask.CompareAndSetForkJoinTaskTag(System.Int16, System.Int16)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ForkJoinTask.QuietlyComplete()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ForkJoinTask.SetForkJoinTaskTag(System.Int16)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.AcceptEither(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.AcceptEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.AcceptEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ApplyToEither(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ApplyToEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ApplyToEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.Exceptionally(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.Handle(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.HandleAsync(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.HandleAsync(Java.Util.Functions.IBiFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.RunAfterBoth(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.RunAfterBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.RunAfterBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.RunAfterEither(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.RunAfterEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.RunAfterEitherAsync(Java.Util.Concurrent.ICompletionStage, Java.Lang.IRunnable, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenAccept(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenAcceptAsync(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenAcceptAsync(Java.Util.Functions.IConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenAcceptBoth(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenAcceptBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenAcceptBothAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenApply(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenApplyAsync(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenApplyAsync(Java.Util.Functions.IFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenCombine(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenCombineAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenCombineAsync(Java.Util.Concurrent.ICompletionStage, Java.Util.Functions.IBiFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenCompose(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenComposeAsync(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenComposeAsync(Java.Util.Functions.IFunction, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenRun(Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenRunAsync(Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ThenRunAsync(Java.Lang.IRunnable, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.ToCompletableFuture()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.WhenComplete(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.WhenCompleteAsync(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.ICompletionStage.WhenCompleteAsync(Java.Util.Functions.IBiConsumer, Java.Util.Concurrent.IExecutor)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.IConcurrentMap.Java.Util.IMap.Compute(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.IConcurrentMap.Java.Util.IMap.ComputeIfAbsent(Java.Lang.Object, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.IConcurrentMap.Java.Util.IMap.ComputeIfPresent(Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.IConcurrentMap.Java.Util.IMap.ForEach(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.IConcurrentMap.Java.Util.IMap.GetOrDefault(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.IConcurrentMap.Java.Util.IMap.Merge(Java.Lang.Object, Java.Lang.Object, Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.IConcurrentMap.Java.Util.IMap.ReplaceAll(Java.Util.Functions.IBiFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.LinkedBlockingDeque.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.LinkedBlockingQueue.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.LinkedTransferQueue.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.PriorityBlockingQueue.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.SynchronousQueue.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicInteger.AccumulateAndGet(System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicInteger.GetAndAccumulate(System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicInteger.GetAndUpdate(Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicInteger.UpdateAndGet(Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerArray.AccumulateAndGet(System.Int32, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerArray.GetAndAccumulate(System.Int32, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerArray.GetAndUpdate(System.Int32, Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerArray.UpdateAndGet(System.Int32, Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerFieldUpdater.AccumulateAndGet(Java.Lang.Object, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerFieldUpdater.GetAndAccumulate(Java.Lang.Object, System.Int32, Java.Util.Functions.IIntBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerFieldUpdater.GetAndUpdate(Java.Lang.Object, Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicIntegerFieldUpdater.UpdateAndGet(Java.Lang.Object, Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLong.AccumulateAndGet(System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLong.GetAndAccumulate(System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLong.GetAndUpdate(Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLong.UpdateAndGet(Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongArray.AccumulateAndGet(System.Int32, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongArray.GetAndAccumulate(System.Int32, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongArray.GetAndUpdate(System.Int32, Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongArray.UpdateAndGet(System.Int32, Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongFieldUpdater.AccumulateAndGet(Java.Lang.Object, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongFieldUpdater.GetAndAccumulate(Java.Lang.Object, System.Int64, Java.Util.Functions.ILongBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongFieldUpdater.GetAndUpdate(Java.Lang.Object, Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicLongFieldUpdater.UpdateAndGet(Java.Lang.Object, Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReference.AccumulateAndGet(Java.Lang.Object, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReference.GetAndAccumulate(Java.Lang.Object, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReference.GetAndUpdate(Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReference.UpdateAndGet(Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceArray.AccumulateAndGet(System.Int32, Java.Lang.Object, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceArray.GetAndAccumulate(System.Int32, Java.Lang.Object, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceArray.GetAndUpdate(System.Int32, Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceArray.UpdateAndGet(System.Int32, Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceFieldUpdater.AccumulateAndGet(Java.Lang.Object, Java.Lang.Object, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceFieldUpdater.GetAndAccumulate(Java.Lang.Object, Java.Lang.Object, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceFieldUpdater.GetAndUpdate(Java.Lang.Object, Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.AtomicReferenceFieldUpdater.UpdateAndGet(Java.Lang.Object, Java.Util.Functions.IUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator..ctor(Java.Util.Functions.IDoubleBinaryOperator, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator.Accumulate(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator.DoubleValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator.FloatValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator.Get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator.IntValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator.LongValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAccumulator.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.Add(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.DoubleValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.FloatValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.IntValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.LongValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.Sum()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.DoubleAdder.SumThenReset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator..ctor(Java.Util.Functions.ILongBinaryOperator, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator.Accumulate(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator.DoubleValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator.FloatValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator.Get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator.IntValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator.LongValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAccumulator.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.Add(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.Decrement()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.DoubleValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.FloatValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.Increment()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.IntValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.LongValue()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.Reset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.Sum()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.LongAdder.SumThenReset()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Atomic.Striped64' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.AsReadLock()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.AsReadWriteLock()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.AsWriteLock()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.ReadLock()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.ReadLockInterruptibly()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryConvertToOptimisticRead(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryConvertToReadLock(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryConvertToWriteLock(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryOptimisticRead()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryReadLock()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryReadLock(System.Int64, Java.Util.Concurrent.TimeUnit)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryUnlockRead()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryUnlockWrite()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryWriteLock()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.TryWriteLock(System.Int64, Java.Util.Concurrent.TimeUnit)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.Unlock(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.UnlockRead(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.UnlockWrite(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.Validate(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.WriteLock()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Concurrent.Locks.StampedLock.WriteLockInterruptibly()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.BinaryOperator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.BinaryOperator.MaxBy(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.BinaryOperator.MinBy(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.DoubleUnaryOperator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.DoubleUnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.Function' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.Function.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiConsumer.Accept(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiConsumer.AndThen(Java.Util.Functions.IBiConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiFunction.AndThen(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiFunction.Apply(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBinaryOperator.MaxBy(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBinaryOperator.MinBy(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiPredicate.And(Java.Util.Functions.IBiPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiPredicate.Negate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiPredicate.Or(Java.Util.Functions.IBiPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBiPredicate.Test(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IBooleanSupplier.AsBoolean.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IConsumer.Accept(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IConsumer.AndThen(Java.Util.Functions.IConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleBinaryOperator.ApplyAsDouble(System.Double, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleConsumer.Accept(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleConsumer.AndThen(Java.Util.Functions.IDoubleConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleFunction.Apply(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoublePredicate.And(Java.Util.Functions.IDoublePredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoublePredicate.Negate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoublePredicate.Or(Java.Util.Functions.IDoublePredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoublePredicate.Test(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleSupplier.AsDouble.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleToIntFunction.ApplyAsInt(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleToLongFunction.ApplyAsLong(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleUnaryOperator.AndThen(Java.Util.Functions.IDoubleUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleUnaryOperator.ApplyAsDouble(System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleUnaryOperator.Compose(Java.Util.Functions.IDoubleUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IDoubleUnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IFunction.AndThen(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IFunction.Apply(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IFunction.Compose(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IFunction.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntBinaryOperator.ApplyAsInt(System.Int32, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntConsumer.Accept(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntConsumer.AndThen(Java.Util.Functions.IIntConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntFunction.Apply(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntPredicate.And(Java.Util.Functions.IIntPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntPredicate.Negate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntPredicate.Or(Java.Util.Functions.IIntPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntPredicate.Test(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntSupplier.AsInt.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntToDoubleFunction.ApplyAsDouble(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntToLongFunction.ApplyAsLong(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntUnaryOperator.AndThen(Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntUnaryOperator.ApplyAsInt(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntUnaryOperator.Compose(Java.Util.Functions.IIntUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IIntUnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongBinaryOperator.ApplyAsLong(System.Int64, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongConsumer.Accept(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongConsumer.AndThen(Java.Util.Functions.ILongConsumer)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongFunction.Apply(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongPredicate.And(Java.Util.Functions.ILongPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongPredicate.Negate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongPredicate.Or(Java.Util.Functions.ILongPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongPredicate.Test(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongSupplier.AsLong.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongToDoubleFunction.ApplyAsDouble(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongToIntFunction.ApplyAsInt(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongUnaryOperator.AndThen(Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongUnaryOperator.ApplyAsLong(System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongUnaryOperator.Compose(Java.Util.Functions.ILongUnaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ILongUnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IntUnaryOperator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IntUnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IObjDoubleConsumer.Accept(Java.Lang.Object, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IObjIntConsumer.Accept(Java.Lang.Object, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IObjLongConsumer.Accept(Java.Lang.Object, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IPredicate.And(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IPredicate.IsEqual(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IPredicate.Negate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IPredicate.Or(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IPredicate.Test(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.ISupplier.Get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IToDoubleBiFunction.ApplyAsDouble(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IToDoubleFunction.ApplyAsDouble(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IToIntBiFunction.ApplyAsInt(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IToIntFunction.ApplyAsInt(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IToLongBiFunction.ApplyAsLong(Java.Lang.Object, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IToLongFunction.ApplyAsLong(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.IUnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.LongUnaryOperator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.LongUnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.Predicate' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.Predicate.IsEqual(Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.UnaryOperator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Functions.UnaryOperator.Identity()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Regex.Pattern.AsPredicate()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collector' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collector.Of(Java.Util.Functions.ISupplier, Java.Util.Functions.IBiConsumer, Java.Util.Functions.IBinaryOperator, Java.Util.Functions.IFunction, Java.Util.Streams.CollectorCharacteristics[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collector.Of(Java.Util.Functions.ISupplier, Java.Util.Functions.IBiConsumer, Java.Util.Functions.IBinaryOperator, Java.Util.Streams.CollectorCharacteristics[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.CollectorCharacteristics' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.CollectorCharacteristics.ValueOf(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.CollectorCharacteristics.Values()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.AveragingDouble(Java.Util.Functions.IToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.AveragingInt(Java.Util.Functions.IToIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.AveragingLong(Java.Util.Functions.IToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.CollectingAndThen(Java.Util.Streams.ICollector, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Counting()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.GroupingBy(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.GroupingBy(Java.Util.Functions.IFunction, Java.Util.Functions.ISupplier, Java.Util.Streams.ICollector)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.GroupingBy(Java.Util.Functions.IFunction, Java.Util.Streams.ICollector)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.GroupingByConcurrent(Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.GroupingByConcurrent(Java.Util.Functions.IFunction, Java.Util.Functions.ISupplier, Java.Util.Streams.ICollector)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.GroupingByConcurrent(Java.Util.Functions.IFunction, Java.Util.Streams.ICollector)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Joining()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Joining(Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Joining(Java.Lang.ICharSequence, Java.Lang.ICharSequence, Java.Lang.ICharSequence)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Joining(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Joining(System.String, System.String, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Mapping(Java.Util.Functions.IFunction, Java.Util.Streams.ICollector)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.MaxBy(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.MinBy(Java.Util.IComparator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.PartitioningBy(Java.Util.Functions.IPredicate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.PartitioningBy(Java.Util.Functions.IPredicate, Java.Util.Streams.ICollector)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Reducing(Java.Lang.Object, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Reducing(Java.Lang.Object, Java.Util.Functions.IFunction, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.Reducing(Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.SummarizingDouble(Java.Util.Functions.IToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.SummarizingInt(Java.Util.Functions.IToIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.SummarizingLong(Java.Util.Functions.IToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.SummingDouble(Java.Util.Functions.IToDoubleFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.SummingInt(Java.Util.Functions.IToIntFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.SummingLong(Java.Util.Functions.IToLongFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToCollection(Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToConcurrentMap(Java.Util.Functions.IFunction, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToConcurrentMap(Java.Util.Functions.IFunction, Java.Util.Functions.IFunction, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToConcurrentMap(Java.Util.Functions.IFunction, Java.Util.Functions.IFunction, Java.Util.Functions.IBinaryOperator, Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToList()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToMap(Java.Util.Functions.IFunction, Java.Util.Functions.IFunction)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToMap(Java.Util.Functions.IFunction, Java.Util.Functions.IFunction, Java.Util.Functions.IBinaryOperator)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToMap(Java.Util.Functions.IFunction, Java.Util.Functions.IFunction, Java.Util.Functions.IBinaryOperator, Java.Util.Functions.ISupplier)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.Collectors.ToSet()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.Close()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.IsParallel.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.Iterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.OnClose(Java.Lang.IRunnable)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.Parallel()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.Sequential()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.Spliterator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.IBaseStream.Unordered()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.ICollector.Accumulator()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.ICollector.Characteristics()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.ICollector.Combiner()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.ICollector.Finisher()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.ICollector.Of(Java.Util.Functions.ISupplier, Java.Util.Functions.IBiConsumer, Java.Util.Functions.IBinaryOperator, Java.Util.Functions.IFunction, Java.Util.Streams.CollectorCharacteristics[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.ICollector.Of(Java.Util.Functions.ISupplier, Java.Util.Functions.IBiConsumer, Java.Util.Functions.IBinaryOperator, Java.Util.Streams.CollectorCharacteristics[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.ICollector.Supplier()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Streams.StreamSupport' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Zip.ZipFile..ctor(Java.IO.File, Java.Nio.Charset.Charset)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Zip.ZipFile..ctor(Java.IO.File, System.Int32, Java.Nio.Charset.Charset)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Zip.ZipFile..ctor(System.String, Java.Nio.Charset.Charset)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Zip.ZipInputStream..ctor(System.IO.Stream, Java.Nio.Charset.Charset)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Java.Util.Zip.ZipOutputStream..ctor(System.IO.Stream, Java.Nio.Charset.Charset)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.ExtendedSSLSession' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.ExtendedSSLSession..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.ExtendedSSLSession.GetLocalSupportedSignatureAlgorithms()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.ExtendedSSLSession.GetPeerSupportedSignatureAlgorithms()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIHostName' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIHostName..ctor(System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIHostName..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIHostName.CreateSNIMatcher(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIMatcher' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIMatcher..ctor(System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIMatcher.Matches(Javax.Net.Ssl.SNIServerName)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIServerName' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIServerName..ctor(System.Int32, System.Byte[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SNIServerName.GetEncoded()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SSLParameters.AlgorithmConstraints.set(Java.Security.IAlgorithmConstraints)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SSLParameters.EndpointIdentificationAlgorithm.set(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SSLParameters.ServerNames.set(System.Collections.Generic.IList)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SSLParameters.SNIMatchers.set(System.Collections.Generic.ICollection)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SSLParameters.UseCipherSuitesOrder.set(System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.SSLServerSocket.SSLParameters.set(Javax.Net.Ssl.SSLParameters)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.StandardConstants' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.X509ExtendedTrustManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.X509ExtendedTrustManager..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.X509ExtendedTrustManager.CheckClientTrusted(Java.Security.Cert.X509Certificate[], System.String, Java.Net.Socket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.X509ExtendedTrustManager.CheckClientTrusted(Java.Security.Cert.X509Certificate[], System.String, Javax.Net.Ssl.SSLEngine)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.X509ExtendedTrustManager.CheckServerTrusted(Java.Security.Cert.X509Certificate[], System.String, Java.Net.Socket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Net.Ssl.X509ExtendedTrustManager.CheckServerTrusted(Java.Security.Cert.X509Certificate[], System.String, Javax.Net.Ssl.SSLEngine)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.SupportedOSPlatformAttribute' exists on 'Javax.Sql.ICommonDataSource.ParentLogger.get()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Commons.Logging.ILog' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.ConnectionClosedException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.HttpException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.HttpHost' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.HttpVersion' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IConnectionReuseStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IFormattedHeader' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHeader' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHeaderElement' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHeaderElementIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHeaderIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpClientConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpClientConnectionExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpConnectionMetrics' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpEntityEnclosingRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpEntityExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpInetConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpMessage' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpRequestFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpRequestInterceptor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpResponse' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpResponseFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpResponseInterceptor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpServerConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpServerConnectionExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IHttpStatus' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.INameValuePair' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IReasonPhraseCatalog' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IRequestLine' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IStatusLine' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.ITokenIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.MalformedChunkCodingException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.MethodNotSupportedException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.NoHttpResponseException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.ParseException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.ProtocolException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.ProtocolVersion' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.UnsupportedHttpVersionException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Auth.Params.AuthParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Auth.Params.AuthParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Auth.Params.IAuthPNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.AUTH' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.AuthenticationException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.AuthSchemeRegistry' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.AuthScope' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.AuthState' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.BasicUserPrincipal' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.IAuthScheme' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.IAuthSchemeFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.ICredentials' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.InvalidCredentialsException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.MalformedChallengeException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.NTCredentials' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.NTUserPrincipal' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Authentication.UsernamePasswordCredentials' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.CircularRedirectException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.ClientProtocolException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.HttpResponseException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IAuthenticationHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.ICookieStore' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.ICredentialsProvider' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IHttpClient' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IHttpClientExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IHttpRequestRetryHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IRedirectHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IRequestDirector' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IResponseHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.IUserTokenHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.NonRepeatableRequestException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.RedirectException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Entity.UrlEncodedFormEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpDelete' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpEntityEnclosingRequestBase' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpGet' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpHead' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpOptions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpPost' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpPut' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpRequestBase' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.HttpTrace' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.IAbortableHttpRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Methods.IHttpUriRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Params.AuthPolicy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Params.ClientParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Params.CookiePolicy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Params.HttpClientParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Params.IClientPNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Protocol.ClientContextConfigurer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Protocol.IClientContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Protocol.RequestAddCookies' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Protocol.RequestDefaultHeaders' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Protocol.RequestProxyAuthentication' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Protocol.RequestTargetAuthentication' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Protocol.ResponseProcessCookies' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Utils.CloneUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Utils.URIUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Client.Utils.URLEncodedUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.BasicEofSensorWatcher' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.BasicManagedEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.ConnectionPoolTimeoutException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.ConnectTimeoutException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.ConnectTimeoutException..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.ConnectTimeoutException..ctor(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.EofSensorInputStream' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.HttpHostConnectException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IClientConnectionManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IClientConnectionManagerFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IClientConnectionOperator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IClientConnectionOperatorExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IClientConnectionRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IConnectionKeepAliveStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IConnectionReleaseTrigger' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IEofSensorWatcher' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IManagedClientConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IManagedClientConnectionExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.IOperatedClientConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.MultihomePlainSocketFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.ConnConnectionParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.ConnManagerParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.ConnManagerParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.ConnPerRouteBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.ConnRouteParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.ConnRouteParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.IConnConnectionPNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.IConnManagerPNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.IConnPerRoute' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Params.IConnRoutePNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Routing.BasicRouteDirector' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Routing.HttpRoute' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Routing.IHttpRouteDirector' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Routing.IHttpRoutePlanner' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Routing.IRouteInfo' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Routing.RouteTracker' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.IHostNameResolver' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.IHostNameResolver.Resolve(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ILayeredSocketFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ILayeredSocketFactory.CreateSocket(Java.Net.Socket, System.String, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ILayeredSocketFactoryExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ISocketFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ISocketFactory.ConnectSocket(Java.Net.Socket, System.String, System.Int32, Java.Net.InetAddress, System.Int32, Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ISocketFactory.CreateSocket()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ISocketFactory.IsSecure(Java.Net.Socket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.ISocketFactoryExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.PlainSocketFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.Scheme' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Schemes.SchemeRegistry' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.AcceptableCountryWildcard(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.CountDots(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.GetCNs(Java.Security.Cert.X509Certificate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.GetDNSSubjectAlts(Java.Security.Cert.X509Certificate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.Verify(System.String, Java.Security.Cert.X509Certificate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.Verify(System.String, Javax.Net.Ssl.ISSLSession)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.Verify(System.String, Javax.Net.Ssl.SSLSocket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.Verify(System.String, System.String[], System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AbstractVerifier.Verify(System.String, System.String[], System.String[], System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AllowAllHostnameVerifier' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AllowAllHostnameVerifier..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.AllowAllHostnameVerifier.Verify(System.String, System.String[], System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.BrowserCompatHostnameVerifier' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.BrowserCompatHostnameVerifier..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.BrowserCompatHostnameVerifier.Verify(System.String, System.String[], System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.IX509HostnameVerifier' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.IX509HostnameVerifier.Verify(System.String, Java.Security.Cert.X509Certificate)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.IX509HostnameVerifier.Verify(System.String, Javax.Net.Ssl.ISSLSession)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.IX509HostnameVerifier.Verify(System.String, Javax.Net.Ssl.SSLSocket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.IX509HostnameVerifier.Verify(System.String, System.String[], System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory..ctor(Java.Security.KeyStore)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory..ctor(Java.Security.KeyStore, System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory..ctor(Java.Security.KeyStore, System.String, Java.Security.KeyStore)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory..ctor(System.String, Java.Security.KeyStore, System.String, Java.Security.KeyStore, Java.Security.SecureRandom, Org.Apache.Http.Conn.Schemes.IHostNameResolver)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory.ConnectSocket(Java.Net.Socket, System.String, System.Int32, Java.Net.InetAddress, System.Int32, Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory.CreateSocket()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory.CreateSocket(Java.Net.Socket, System.String, System.Int32, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.SSLSocketFactory.IsSecure(Java.Net.Socket)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.StrictHostnameVerifier' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.StrictHostnameVerifier..ctor()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Ssl.StrictHostnameVerifier.Verify(System.String, System.String[], System.String[])' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Conn.Util.InetAddressUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookie.Params.CookieSpecParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookie.Params.ICookieSpecPNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.CookieOrigin' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.CookieSpecRegistry' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.IClientCookie' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.ICookie' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.ICookieAttributeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.ICookieSpec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.ICookieSpecFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.ISetCookie' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.ISetCookie2' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.ISM' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Cookies.MalformedCookieException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.AbstractHttpEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.BasicHttpEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.BufferedHttpEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.ByteArrayEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.EntityTemplate' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.FileEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.HttpEntityWrapper' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.IContentLengthStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.IContentProducer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.InputStreamEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.SerializableEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Entity.StringEntity' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.AbstractHttpClientConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.AbstractHttpServerConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.DefaultConnectionReuseStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.DefaultHttpClientConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.DefaultHttpRequestFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.DefaultHttpResponseFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.DefaultHttpServerConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.EnglishReasonPhraseCatalog' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.HttpConnectionMetricsImpl' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.NoConnectionReuseStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.SocketHttpClientConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.SocketHttpServerConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.AuthSchemeBase' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.BasicScheme' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.BasicSchemeFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.DigestScheme' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.DigestSchemeFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.INTLMEngine' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.NTLMEngineException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.NTLMScheme' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.RFC2617Scheme' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Auth.UnsupportedDigestAlgorithmException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.AbstractAuthenticationHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.AbstractHttpClient' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.BasicCookieStore' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.BasicCredentialsProvider' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.BasicResponseHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.ClientParamsStack' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultConnectionKeepAliveStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultHttpClient' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultHttpRequestRetryHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultProxyAuthenticationHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultRedirectHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultRequestDirector' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultTargetAuthenticationHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.DefaultUserTokenHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.EntityEnclosingRequestWrapper' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.RedirectLocations' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.RequestWrapper' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.RoutedRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Client.TunnelRefusedException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.AbstractClientConnAdapter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.AbstractPooledConnAdapter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.AbstractPoolEntry' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.DefaultClientConnection' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.DefaultClientConnectionOperator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.DefaultHttpRoutePlanner' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.DefaultResponseParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.IdleConnectionHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.LoggingSessionInputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.LoggingSessionOutputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.ProxySelectorRoutePlanner' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.SingleClientConnManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Wire' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.AbstractConnPool' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.BasicPooledConnAdapter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.BasicPoolEntry' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.BasicPoolEntryRef' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.ConnPoolByRoute' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.IPoolEntryRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.IRefQueueHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.RefQueueWorker' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.RouteSpecificPool' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.ThreadSafeClientConnManager' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.WaitingThread' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Conn.Tsccm.WaitingThreadAborter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.AbstractCookieAttributeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.AbstractCookieSpec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicClientCookie' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicClientCookie2' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicCommentHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicDomainHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicExpiresHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicMaxAgeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicPathHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BasicSecureHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BestMatchSpec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BestMatchSpecFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BrowserCompatSpec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.BrowserCompatSpecFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.CookieSpecBase' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.DateParseException' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.DateUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.NetscapeDomainHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.NetscapeDraftHeaderParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.NetscapeDraftSpec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.NetscapeDraftSpecFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2109DomainHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2109Spec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2109SpecFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2109VersionHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2965CommentUrlAttributeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2965DiscardAttributeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2965DomainAttributeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2965PortAttributeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2965Spec' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2965SpecFactory' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Cookie.RFC2965VersionAttributeHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Entity.EntityDeserializer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Entity.EntitySerializer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Entity.LaxContentLengthStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.Entity.StrictContentLengthStrategy' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.AbstractMessageParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.AbstractMessageWriter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.AbstractSessionInputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.AbstractSessionOutputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.ChunkedInputStream' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.ChunkedOutputStream' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.ContentLengthInputStream' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.ContentLengthOutputStream' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.HttpRequestParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.HttpRequestWriter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.HttpResponseParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.HttpResponseWriter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.HttpTransportMetricsImpl' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.IdentityInputStream' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.IdentityOutputStream' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.SocketInputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Impl.IO.SocketOutputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.IHttpMessageParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.IHttpMessageParserExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.IHttpMessageWriter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.IHttpMessageWriterExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.IHttpTransportMetrics' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.ISessionInputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.ISessionInputBufferExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.ISessionOutputBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.IO.ISessionOutputBufferExtensions' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.AbstractHttpMessage' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHeader' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHeaderElement' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHeaderElementIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHeaderIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHeaderValueFormatter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHeaderValueParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHttpEntityEnclosingRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHttpRequest' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicHttpResponse' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicLineFormatter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicLineParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicListHeaderIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicNameValuePair' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicRequestLine' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicStatusLine' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BasicTokenIterator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.BufferedHeader' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.HeaderGroup' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.IHeaderValueFormatter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.IHeaderValueParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.ILineFormatter' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.ILineParser' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Message.ParserCursor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.AbstractHttpParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.AbstractHttpParams.Copy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.AbstractHttpParams.GetParameter(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.AbstractHttpParams.RemoveParameter(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.AbstractHttpParams.SetParameter(System.String, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.BasicHttpParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.DefaultedHttpParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpAbstractParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.GetConnectionTimeout(Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.GetLinger(Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.GetSocketBufferSize(Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.GetSoTimeout(Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.GetTcpNoDelay(Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.IsStaleCheckingEnabled(Org.Apache.Http.Params.IHttpParams)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.SetConnectionTimeout(Org.Apache.Http.Params.IHttpParams, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.SetLinger(Org.Apache.Http.Params.IHttpParams, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.SetSocketBufferSize(Org.Apache.Http.Params.IHttpParams, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.SetSoTimeout(Org.Apache.Http.Params.IHttpParams, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.SetStaleCheckingEnabled(Org.Apache.Http.Params.IHttpParams, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpConnectionParams.SetTcpNoDelay(Org.Apache.Http.Params.IHttpParams, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpProtocolParamBean' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.HttpProtocolParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.ICoreConnectionPNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.ICoreProtocolPNames' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.Copy()' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.GetBooleanParameter(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.GetDoubleParameter(System.String, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.GetIntParameter(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.GetLongParameter(System.String, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.GetParameter(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.IsParameterFalse(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.IsParameterTrue(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.RemoveParameter(System.String)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.SetBooleanParameter(System.String, System.Boolean)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.SetDoubleParameter(System.String, System.Double)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.SetIntParameter(System.String, System.Int32)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.SetLongParameter(System.String, System.Int64)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Params.IHttpParams.SetParameter(System.String, Java.Lang.Object)' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.BasicHttpContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.BasicHttpProcessor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.DefaultedHttpContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.HTTP' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.HttpDateGenerator' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.HttpRequestExecutor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.HttpRequestHandlerRegistry' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.HttpService' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IExecutionContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IHttpContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IHttpExpectationVerifier' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IHttpProcessor' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IHttpRequestHandler' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IHttpRequestHandlerResolver' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IHttpRequestInterceptorList' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.IHttpResponseInterceptorList' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.RequestConnControl' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.RequestContent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.RequestDate' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.RequestExpectContinue' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.RequestTargetHost' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.RequestUserAgent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.ResponseConnControl' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.ResponseContent' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.ResponseDate' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.ResponseServer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.SyncBasicHttpContext' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Protocol.UriPatternMatcher' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Util.ByteArrayBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Util.CharArrayBuffer' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Util.EncodingUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Util.EntityUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Util.ExceptionUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Util.LangUtils' in the contract but not the implementation. +CannotRemoveAttribute : Attribute 'System.Runtime.Versioning.ObsoletedOSPlatformAttribute' exists on 'Org.Apache.Http.Util.VersionInfo' in the contract but not the implementation.