diff --git a/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks.csproj b/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks.csproj index d5c1c629a29..820e25f6224 100644 --- a/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks.csproj +++ b/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks.csproj @@ -62,8 +62,8 @@ - - + + diff --git a/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks/CheckApiCompatibility.cs b/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks/CheckApiCompatibility.cs index 8eefedfb747..0ca5d0e00ec 100644 --- a/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks/CheckApiCompatibility.cs +++ b/build-tools/Xamarin.Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks/CheckApiCompatibility.cs @@ -142,44 +142,41 @@ void ValidateApiCompat (string contractPath, bool validateAgainstReference) File.Copy (implementationAssembly, Path.Combine (targetImplementationPathDirectory, assemblyToValidate), true); } - using (var genApiProcess = new Process ()) { + for (int i = 0; i < 3; i++) { + using (var genApiProcess = new Process ()) { - genApiProcess.StartInfo.FileName = apiCompat; - genApiProcess.StartInfo.Arguments = $"\"{contractPathDirectory}\" -i \"{targetImplementationPathDirectory}\" "; + genApiProcess.StartInfo.FileName = apiCompat; + genApiProcess.StartInfo.Arguments = $"\"{contractPathDirectory}\" -i \"{targetImplementationPathDirectory}\" "; - // Verify if there is an exclusion list - var excludeAttributes = Path.Combine (ApiCompatibilityPath, $"api-compat-exclude-attributes.txt"); - if (File.Exists (excludeAttributes)) { - genApiProcess.StartInfo.Arguments += $"--exclude-attributes {excludeAttributes} "; - } + // Verify if there is an exclusion list + var excludeAttributes = Path.Combine (ApiCompatibilityPath, $"api-compat-exclude-attributes.txt"); + if (File.Exists (excludeAttributes)) { + genApiProcess.StartInfo.Arguments += $"--exclude-attributes {excludeAttributes} "; + } - genApiProcess.StartInfo.UseShellExecute = false; - genApiProcess.StartInfo.CreateNoWindow = true; - genApiProcess.StartInfo.RedirectStandardOutput = true; - genApiProcess.StartInfo.RedirectStandardError = true; - genApiProcess.EnableRaisingEvents = true; - - var lines = new List (); - var processHasCrashed = false; - void dataReceived (object sender, DataReceivedEventArgs args) - { - if (!string.IsNullOrWhiteSpace (args.Data)) { - lines.Add (args.Data.Trim ()); - - if (args.Data.IndexOf ("Native Crash Reporting") != -1) { - processHasCrashed = true; + genApiProcess.StartInfo.UseShellExecute = false; + genApiProcess.StartInfo.CreateNoWindow = true; + genApiProcess.StartInfo.RedirectStandardOutput = true; + genApiProcess.StartInfo.RedirectStandardError = true; + genApiProcess.EnableRaisingEvents = true; + + var lines = new List (); + var processHasCrashed = false; + void dataReceived (object sender, DataReceivedEventArgs args) + { + if (!string.IsNullOrWhiteSpace (args.Data)) { + lines.Add (args.Data.Trim ()); + + if (args.Data.IndexOf ("Native Crash Reporting") != -1) { + processHasCrashed = true; + } } } - } - genApiProcess.OutputDataReceived += dataReceived; - genApiProcess.ErrorDataReceived += dataReceived; - - // Get api definition for previous Api - for (int i = 0; i < 3; i++) { - lines.Clear (); - processHasCrashed = false; + genApiProcess.OutputDataReceived += dataReceived; + genApiProcess.ErrorDataReceived += dataReceived; + // Get api definition for previous Api compatApiCommand = $"CompatApi command: {genApiProcess.StartInfo.FileName} {genApiProcess.StartInfo.Arguments}"; Log.LogMessage (MessageImportance.High, compatApiCommand); @@ -198,7 +195,8 @@ void dataReceived (object sender, DataReceivedEventArgs args) if (processHasCrashed) { if (i + 1 < 3) { - Log.LogWarning ($"Process has crashed.'{Environment.NewLine}Crash report:{Environment.NewLine}{String.Join (Environment.NewLine, lines)}"); + Log.LogWarning ($"Process has crashed."); + Log.LogMessage (MessageImportance.High, String.Join (Environment.NewLine, lines)); Log.LogWarning ($"We will retry."); continue; } else { @@ -328,13 +326,15 @@ Dictionary> LoadIssues (IEnumerable content) return issues; } - void LogError(string errorMessage) + void LogError (string errorMessage) { + var message = string.Empty; if (!string.IsNullOrWhiteSpace (compatApiCommand)) { - Log.LogError ($"{compatApiCommand}{Environment.NewLine}{errorMessage}"); - } else { - Log.LogError (errorMessage); + errorMessage = $"{compatApiCommand}{Environment.NewLine}{errorMessage}"; } + + Log.LogMessage (MessageImportance.High, errorMessage); + Log.LogError (errorMessage); } } } diff --git a/src/Mono.Android/Mono.Android.targets b/src/Mono.Android/Mono.Android.targets index e0718d0e133..2ad07371bb2 100644 --- a/src/Mono.Android/Mono.Android.targets +++ b/src/Mono.Android/Mono.Android.targets @@ -78,6 +78,10 @@ Inputs="metadata;enumflags;map.csv;methodmap.csv;$(IntermediateOutputPath)mcw\api.xml" Outputs="$(IntermediateOutputPath)mcw\Mono.Android.projitems"> + + <_ApiVersions Condition="Exists('$(AndroidSdkDirectory)\platforms\android-$(AndroidApiLevel)\data\api-versions.xml')">"$(AndroidSdkDirectory)\platforms\android-$(AndroidApiLevel)\data\api-versions.xml" + <_ApiVersions Condition="'$(_ApiVersions)'==''">"$(AndroidSdkDirectory)\platform-tools\api\api-versions.xml" + "$(XAInstallPrefix)xbuild\Xamarin\Android\generator.exe" <_GenFlags>--public --product-version=7 @@ -87,7 +91,7 @@ <_Fixup>--fixup=metadata <_Enums1>--preserve-enums --enumflags=enumflags --enumfields=map.csv --enummethods=methodmap.csv <_Enums2>--enummetadata=$(IntermediateOutputPath)mcw\enummetadata - <_Versions>--apiversions="$(AndroidSdkDirectory)\platform-tools\api\api-versions.xml" + <_Versions>--apiversions=$(_ApiVersions) <_Annotations>--annotations="$(AndroidSdkDirectory)\platform-tools\api\annotations.zip" <_Assembly>--assembly="Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" <_TypeMap>--type-map-report=$(IntermediateOutputPath)mcw\type-mapping.txt @@ -173,7 +177,7 @@ Inputs="$(TargetPath);@(ApiCompatibilityFiles)" Outputs="$(IntermediateOutputPath)CheckApiCompatibility.stamp"> )' changed from '[RegisterAttribute("setCrossProfileCalendarPackages", "(Landroid/content/ComponentName;Ljava/util/Set;)V", "GetSetCrossProfileCalendarPackages_Landroid_content_ComponentName_Ljava_util_Set_Handler")]' in the contract to '[RegisterAttribute("setCrossProfileCalendarPackages", "(Landroid/content/ComponentName;Ljava/util/Set;)V", "GetSetCrossProfileCalendarPackages_Landroid_content_ComponentName_Ljava_util_Set_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Admin.DevicePolicyManager.SetDefaultSmsApplication(Android.Content.ComponentName, System.String)' changed from '[RegisterAttribute("setDefaultSmsApplication", "(Landroid/content/ComponentName;Ljava/lang/String;)V", "GetSetDefaultSmsApplication_Landroid_content_ComponentName_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("setDefaultSmsApplication", "(Landroid/content/ComponentName;Ljava/lang/String;)V", "GetSetDefaultSmsApplication_Landroid_content_ComponentName_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Admin.DevicePolicyManager.SetGlobalPrivateDnsModeOpportunistic(Android.Content.ComponentName)' changed from '[RegisterAttribute("setGlobalPrivateDnsModeOpportunistic", "(Landroid/content/ComponentName;)I", "GetSetGlobalPrivateDnsModeOpportunistic_Landroid_content_ComponentName_Handler")]' in the contract to '[RegisterAttribute("setGlobalPrivateDnsModeOpportunistic", "(Landroid/content/ComponentName;)I", "GetSetGlobalPrivateDnsModeOpportunistic_Landroid_content_ComponentName_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Admin.DevicePolicyManager.SetGlobalPrivateDnsModeSpecifiedHost(Android.Content.ComponentName, System.String)' changed from '[RegisterAttribute("setGlobalPrivateDnsModeSpecifiedHost", "(Landroid/content/ComponentName;Ljava/lang/String;)I", "GetSetGlobalPrivateDnsModeSpecifiedHost_Landroid_content_ComponentName_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("setGlobalPrivateDnsModeSpecifiedHost", "(Landroid/content/ComponentName;Ljava/lang/String;)I", "GetSetGlobalPrivateDnsModeSpecifiedHost_Landroid_content_ComponentName_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Admin.DevicePolicyManager.InstallSystemUpdateCallback' changed from '[RegisterAttribute("android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/app/admin/DevicePolicyManager$InstallSystemUpdateCallback", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Backup.BackupManager.GetUserForAncestralSerialNumber(System.Int64)' changed from '[RegisterAttribute("getUserForAncestralSerialNumber", "(J)Landroid/os/UserHandle;", "GetGetUserForAncestralSerialNumber_JHandler")]' in the contract to '[RegisterAttribute("getUserForAncestralSerialNumber", "(J)Landroid/os/UserHandle;", "GetGetUserForAncestralSerialNumber_JHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Roles.RoleManager' changed from '[RegisterAttribute("android/app/role/RoleManager", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/app/role/RoleManager", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Usage.UsageStats.LastTimeForegroundServiceUsed.get()' changed from '[RegisterAttribute("getLastTimeForegroundServiceUsed", "()J", "")]' in the contract to '[RegisterAttribute("getLastTimeForegroundServiceUsed", "()J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Usage.UsageStats.LastTimeVisible.get()' changed from '[RegisterAttribute("getLastTimeVisible", "()J", "")]' in the contract to '[RegisterAttribute("getLastTimeVisible", "()J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Usage.UsageStats.TotalTimeForegroundServiceUsed.get()' changed from '[RegisterAttribute("getTotalTimeForegroundServiceUsed", "()J", "")]' in the contract to '[RegisterAttribute("getTotalTimeForegroundServiceUsed", "()J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.App.Usage.UsageStats.TotalTimeVisible.get()' changed from '[RegisterAttribute("getTotalTimeVisible", "()J", "")]' in the contract to '[RegisterAttribute("getTotalTimeVisible", "()J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Appwidget.AppWidgetHostView.SetOnLightBackground(System.Boolean)' changed from '[RegisterAttribute("setOnLightBackground", "(Z)V", "GetSetOnLightBackground_ZHandler")]' in the contract to '[RegisterAttribute("setOnLightBackground", "(Z)V", "GetSetOnLightBackground_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProvider.ApplyBatch(System.String, System.Collections.Generic.IList)' changed from '[RegisterAttribute("applyBatch", "(Ljava/lang/String;Ljava/util/ArrayList;)[Landroid/content/ContentProviderResult;", "GetApplyBatch_Ljava_lang_String_Ljava_util_ArrayList_Handler")]' in the contract to '[RegisterAttribute("applyBatch", "(Ljava/lang/String;Ljava/util/ArrayList;)[Landroid/content/ContentProviderResult;", "GetApplyBatch_Ljava_lang_String_Ljava_util_ArrayList_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProvider.Call(System.String, System.String, System.String, Android.OS.Bundle)' changed from '[RegisterAttribute("call", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/os/Bundle;", "GetCall_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Landroid_os_Bundle_Handler")]' in the contract to '[RegisterAttribute("call", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/os/Bundle;", "GetCall_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Landroid_os_Bundle_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProvider.ClearCallingIdentity()' changed from '[RegisterAttribute("clearCallingIdentity", "()Landroid/content/ContentProvider$CallingIdentity;", "")]' in the contract to '[RegisterAttribute("clearCallingIdentity", "()Landroid/content/ContentProvider$CallingIdentity;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProvider.RestoreCallingIdentity(Android.Content.ContentProvider.CallingIdentity)' changed from '[RegisterAttribute("restoreCallingIdentity", "(Landroid/content/ContentProvider$CallingIdentity;)V", "")]' in the contract to '[RegisterAttribute("restoreCallingIdentity", "(Landroid/content/ContentProvider$CallingIdentity;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProvider.CallingIdentity' changed from '[RegisterAttribute("android/content/ContentProvider$CallingIdentity", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/content/ContentProvider$CallingIdentity", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProviderClient.ApplyBatch(System.String, System.Collections.Generic.IList)' changed from '[RegisterAttribute("applyBatch", "(Ljava/lang/String;Ljava/util/ArrayList;)[Landroid/content/ContentProviderResult;", "GetApplyBatch_Ljava_lang_String_Ljava_util_ArrayList_Handler")]' in the contract to '[RegisterAttribute("applyBatch", "(Ljava/lang/String;Ljava/util/ArrayList;)[Landroid/content/ContentProviderResult;", "GetApplyBatch_Ljava_lang_String_Ljava_util_ArrayList_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProviderClient.Call(System.String, System.String, System.String, Android.OS.Bundle)' changed from '[RegisterAttribute("call", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/os/Bundle;", "GetCall_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Landroid_os_Bundle_Handler")]' in the contract to '[RegisterAttribute("call", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/os/Bundle;", "GetCall_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Landroid_os_Bundle_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentProviderClient.OpenTypedAssetFile(Android.Net.Uri, System.String, Android.OS.Bundle, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("openTypedAssetFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/Bundle;Landroid/os/CancellationSignal;)Landroid/content/res/AssetFileDescriptor;", "")]' in the contract to '[RegisterAttribute("openTypedAssetFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/Bundle;Landroid/os/CancellationSignal;)Landroid/content/res/AssetFileDescriptor;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.Call(System.String, System.String, System.String, Android.OS.Bundle)' changed from '[RegisterAttribute("call", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("call", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.GetTypeInfo(System.String)' changed from '[RegisterAttribute("getTypeInfo", "(Ljava/lang/String;)Landroid/content/ContentResolver$MimeTypeInfo;", "")]' in the contract to '[RegisterAttribute("getTypeInfo", "(Ljava/lang/String;)Landroid/content/ContentResolver$MimeTypeInfo;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.LoadThumbnail(Android.Net.Uri, Android.Util.Size, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("loadThumbnail", "(Landroid/net/Uri;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "GetLoadThumbnail_Landroid_net_Uri_Landroid_util_Size_Landroid_os_CancellationSignal_Handler")]' in the contract to '[RegisterAttribute("loadThumbnail", "(Landroid/net/Uri;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "GetLoadThumbnail_Landroid_net_Uri_Landroid_util_Size_Landroid_os_CancellationSignal_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.OpenAssetFile(Android.Net.Uri, System.String, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("openAssetFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/CancellationSignal;)Landroid/content/res/AssetFileDescriptor;", "")]' in the contract to '[RegisterAttribute("openAssetFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/CancellationSignal;)Landroid/content/res/AssetFileDescriptor;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.OpenFile(Android.Net.Uri, System.String, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("openFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/CancellationSignal;)Landroid/os/ParcelFileDescriptor;", "")]' in the contract to '[RegisterAttribute("openFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/CancellationSignal;)Landroid/os/ParcelFileDescriptor;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.OpenTypedAssetFile(Android.Net.Uri, System.String, Android.OS.Bundle, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("openTypedAssetFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/Bundle;Landroid/os/CancellationSignal;)Landroid/content/res/AssetFileDescriptor;", "")]' in the contract to '[RegisterAttribute("openTypedAssetFile", "(Landroid/net/Uri;Ljava/lang/String;Landroid/os/Bundle;Landroid/os/CancellationSignal;)Landroid/content/res/AssetFileDescriptor;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.Wrap(Android.Content.ContentProvider)' changed from '[RegisterAttribute("wrap", "(Landroid/content/ContentProvider;)Landroid/content/ContentResolver;", "")]' in the contract to '[RegisterAttribute("wrap", "(Landroid/content/ContentProvider;)Landroid/content/ContentResolver;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.Wrap(Android.Content.ContentProviderClient)' changed from '[RegisterAttribute("wrap", "(Landroid/content/ContentProviderClient;)Landroid/content/ContentResolver;", "")]' in the contract to '[RegisterAttribute("wrap", "(Landroid/content/ContentProviderClient;)Landroid/content/ContentResolver;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentResolver.MimeTypeInfo' changed from '[RegisterAttribute("android/content/ContentResolver$MimeTypeInfo", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/content/ContentResolver$MimeTypeInfo", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.ContentUris.RemoveId(Android.Net.Uri)' changed from '[RegisterAttribute("removeId", "(Landroid/net/Uri;)Landroid/net/Uri;", "")]' in the contract to '[RegisterAttribute("removeId", "(Landroid/net/Uri;)Landroid/net/Uri;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Context.BiometricService' changed from '[RegisterAttribute("BIOMETRIC_SERVICE")]' in the contract to '[RegisterAttribute("BIOMETRIC_SERVICE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Context.RoleService' changed from '[RegisterAttribute("ROLE_SERVICE")]' in the contract to '[RegisterAttribute("ROLE_SERVICE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Context.BindService(Android.Content.Intent, Android.Content.Bind, Java.Util.Concurrent.IExecutor, Android.Content.IServiceConnection)' changed from '[RegisterAttribute("bindService", "(Landroid/content/Intent;ILjava/util/concurrent/Executor;Landroid/content/ServiceConnection;)Z", "GetBindService_Landroid_content_Intent_ILjava_util_concurrent_Executor_Landroid_content_ServiceConnection_Handler")]' in the contract to '[RegisterAttribute("bindService", "(Landroid/content/Intent;ILjava/util/concurrent/Executor;Landroid/content/ServiceConnection;)Z", "GetBindService_Landroid_content_Intent_ILjava_util_concurrent_Executor_Landroid_content_ServiceConnection_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Context.OpPackageName.get()' changed from '[RegisterAttribute("getOpPackageName", "()Ljava/lang/String;", "GetGetOpPackageNameHandler")]' in the contract to '[RegisterAttribute("getOpPackageName", "()Ljava/lang/String;", "GetGetOpPackageNameHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Context.UpdateServiceGroup(Android.Content.IServiceConnection, System.Int32, System.Int32)' changed from '[RegisterAttribute("updateServiceGroup", "(Landroid/content/ServiceConnection;II)V", "GetUpdateServiceGroup_Landroid_content_ServiceConnection_IIHandler")]' in the contract to '[RegisterAttribute("updateServiceGroup", "(Landroid/content/ServiceConnection;II)V", "GetUpdateServiceGroup_Landroid_content_ServiceConnection_IIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ActionDefine' changed from '[RegisterAttribute("ACTION_DEFINE")]' in the contract to '[RegisterAttribute("ACTION_DEFINE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ActionTranslate' changed from '[RegisterAttribute("ACTION_TRANSLATE")]' in the contract to '[RegisterAttribute("ACTION_TRANSLATE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ActionViewLocus' changed from '[RegisterAttribute("ACTION_VIEW_LOCUS")]' in the contract to '[RegisterAttribute("ACTION_VIEW_LOCUS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.CategoryAppFiles' changed from '[RegisterAttribute("CATEGORY_APP_FILES")]' in the contract to '[RegisterAttribute("CATEGORY_APP_FILES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.CategorySecondaryHome' changed from '[RegisterAttribute("CATEGORY_SECONDARY_HOME")]' in the contract to '[RegisterAttribute("CATEGORY_SECONDARY_HOME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ExtraAutoLaunchSingleChoice' changed from '[RegisterAttribute("EXTRA_AUTO_LAUNCH_SINGLE_CHOICE")]' in the contract to '[RegisterAttribute("EXTRA_AUTO_LAUNCH_SINGLE_CHOICE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ExtraContentQuery' changed from '[RegisterAttribute("EXTRA_CONTENT_QUERY")]' in the contract to '[RegisterAttribute("EXTRA_CONTENT_QUERY", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ExtraDurationMillis' changed from '[RegisterAttribute("EXTRA_DURATION_MILLIS")]' in the contract to '[RegisterAttribute("EXTRA_DURATION_MILLIS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ExtraLocusId' changed from '[RegisterAttribute("EXTRA_LOCUS_ID")]' in the contract to '[RegisterAttribute("EXTRA_LOCUS_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.Intent.ExtraShortcutId' changed from '[RegisterAttribute("EXTRA_SHORTCUT_ID")]' in the contract to '[RegisterAttribute("EXTRA_SHORTCUT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Intent.Identifier.get()' changed from '[RegisterAttribute("getIdentifier", "()Ljava/lang/String;", "GetGetIdentifierHandler")]' in the contract to '[RegisterAttribute("getIdentifier", "()Ljava/lang/String;", "GetGetIdentifierHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Intent.SetIdentifier(System.String)' changed from '[RegisterAttribute("setIdentifier", "(Ljava/lang/String;)Landroid/content/Intent;", "GetSetIdentifier_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("setIdentifier", "(Ljava/lang/String;)Landroid/content/Intent;", "GetSetIdentifier_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.LocusId' changed from '[RegisterAttribute("android/content/LocusId", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/content/LocusId", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ApplicationInfo.IsProfileableByShell.get()' changed from '[RegisterAttribute("isProfileableByShell", "()Z", "GetIsProfileableByShellHandler")]' in the contract to '[RegisterAttribute("isProfileableByShell", "()Z", "GetIsProfileableByShellHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ApplicationInfo.IsResourceOverlay.get()' changed from '[RegisterAttribute("isResourceOverlay", "()Z", "GetIsResourceOverlayHandler")]' in the contract to '[RegisterAttribute("isResourceOverlay", "()Z", "GetIsResourceOverlayHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.LauncherApps.AllPackageInstallerSessions.get()' changed from '[RegisterAttribute("getAllPackageInstallerSessions", "()Ljava/util/List;", "GetGetAllPackageInstallerSessionsHandler")]' in the contract to '[RegisterAttribute("getAllPackageInstallerSessions", "()Ljava/util/List;", "GetGetAllPackageInstallerSessionsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.LauncherApps.RegisterPackageInstallerSessionCallback(Java.Util.Concurrent.IExecutor, Android.Content.PM.PackageInstaller.SessionCallback)' changed from '[RegisterAttribute("registerPackageInstallerSessionCallback", "(Ljava/util/concurrent/Executor;Landroid/content/pm/PackageInstaller$SessionCallback;)V", "GetRegisterPackageInstallerSessionCallback_Ljava_util_concurrent_Executor_Landroid_content_pm_PackageInstaller_SessionCallback_Handler")]' in the contract to '[RegisterAttribute("registerPackageInstallerSessionCallback", "(Ljava/util/concurrent/Executor;Landroid/content/pm/PackageInstaller$SessionCallback;)V", "GetRegisterPackageInstallerSessionCallback_Ljava_util_concurrent_Executor_Landroid_content_pm_PackageInstaller_SessionCallback_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.LauncherApps.ShouldHideFromSuggestions(System.String, Android.OS.UserHandle)' changed from '[RegisterAttribute("shouldHideFromSuggestions", "(Ljava/lang/String;Landroid/os/UserHandle;)Z", "GetShouldHideFromSuggestions_Ljava_lang_String_Landroid_os_UserHandle_Handler")]' in the contract to '[RegisterAttribute("shouldHideFromSuggestions", "(Ljava/lang/String;Landroid/os/UserHandle;)Z", "GetShouldHideFromSuggestions_Ljava_lang_String_Landroid_os_UserHandle_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.LauncherApps.StartPackageInstallerSessionDetailsActivity(Android.Content.PM.PackageInstaller.SessionInfo, Android.Graphics.Rect, Android.OS.Bundle)' changed from '[RegisterAttribute("startPackageInstallerSessionDetailsActivity", "(Landroid/content/pm/PackageInstaller$SessionInfo;Landroid/graphics/Rect;Landroid/os/Bundle;)V", "GetStartPackageInstallerSessionDetailsActivity_Landroid_content_pm_PackageInstaller_SessionInfo_Landroid_graphics_Rect_Landroid_os_Bundle_Handler")]' in the contract to '[RegisterAttribute("startPackageInstallerSessionDetailsActivity", "(Landroid/content/pm/PackageInstaller$SessionInfo;Landroid/graphics/Rect;Landroid/os/Bundle;)V", "GetStartPackageInstallerSessionDetailsActivity_Landroid_content_pm_PackageInstaller_SessionInfo_Landroid_graphics_Rect_Landroid_os_Bundle_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.LauncherApps.UnregisterPackageInstallerSessionCallback(Android.Content.PM.PackageInstaller.SessionCallback)' changed from '[RegisterAttribute("unregisterPackageInstallerSessionCallback", "(Landroid/content/pm/PackageInstaller$SessionCallback;)V", "GetUnregisterPackageInstallerSessionCallback_Landroid_content_pm_PackageInstaller_SessionCallback_Handler")]' in the contract to '[RegisterAttribute("unregisterPackageInstallerSessionCallback", "(Landroid/content/pm/PackageInstaller$SessionCallback;)V", "GetUnregisterPackageInstallerSessionCallback_Landroid_content_pm_PackageInstaller_SessionCallback_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ModuleInfo' changed from '[RegisterAttribute("android/content/pm/ModuleInfo", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/content/pm/ModuleInfo", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.PM.PackageInstaller.ActionSessionUpdated' changed from '[RegisterAttribute("ACTION_SESSION_UPDATED")]' in the contract to '[RegisterAttribute("ACTION_SESSION_UPDATED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.ActiveStagedSession.get()' changed from '[RegisterAttribute("getActiveStagedSession", "()Landroid/content/pm/PackageInstaller$SessionInfo;", "GetGetActiveStagedSessionHandler")]' in the contract to '[RegisterAttribute("getActiveStagedSession", "()Landroid/content/pm/PackageInstaller$SessionInfo;", "GetGetActiveStagedSessionHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.InstallExistingPackage(System.String, Android.Content.PM.InstallReason, Android.Content.IntentSender)' changed from '[RegisterAttribute("installExistingPackage", "(Ljava/lang/String;ILandroid/content/IntentSender;)V", "GetInstallExistingPackage_Ljava_lang_String_ILandroid_content_IntentSender_Handler")]' in the contract to '[RegisterAttribute("installExistingPackage", "(Ljava/lang/String;ILandroid/content/IntentSender;)V", "GetInstallExistingPackage_Ljava_lang_String_ILandroid_content_IntentSender_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.StagedSessions.get()' changed from '[RegisterAttribute("getStagedSessions", "()Ljava/util/List;", "GetGetStagedSessionsHandler")]' in the contract to '[RegisterAttribute("getStagedSessions", "()Ljava/util/List;", "GetGetStagedSessionsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.Session.AddChildSessionId(System.Int32)' changed from '[RegisterAttribute("addChildSessionId", "(I)V", "GetAddChildSessionId_IHandler")]' in the contract to '[RegisterAttribute("addChildSessionId", "(I)V", "GetAddChildSessionId_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.Session.GetChildSessionIds()' changed from '[RegisterAttribute("getChildSessionIds", "()[I", "GetGetChildSessionIdsHandler")]' in the contract to '[RegisterAttribute("getChildSessionIds", "()[I", "GetGetChildSessionIdsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.Session.IsMultiPackage.get()' changed from '[RegisterAttribute("isMultiPackage", "()Z", "GetIsMultiPackageHandler")]' in the contract to '[RegisterAttribute("isMultiPackage", "()Z", "GetIsMultiPackageHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.Session.IsStaged.get()' changed from '[RegisterAttribute("isStaged", "()Z", "GetIsStagedHandler")]' in the contract to '[RegisterAttribute("isStaged", "()Z", "GetIsStagedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.Session.ParentSessionId.get()' changed from '[RegisterAttribute("getParentSessionId", "()I", "GetGetParentSessionIdHandler")]' in the contract to '[RegisterAttribute("getParentSessionId", "()I", "GetGetParentSessionIdHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.Session.RemoveChildSessionId(System.Int32)' changed from '[RegisterAttribute("removeChildSessionId", "(I)V", "GetRemoveChildSessionId_IHandler")]' in the contract to '[RegisterAttribute("removeChildSessionId", "(I)V", "GetRemoveChildSessionId_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.StagedSession Android.Content.PM.PackageInstaller.SessionInfo.StagedSessionActivationFailed' changed from '[RegisterAttribute("STAGED_SESSION_ACTIVATION_FAILED")]' in the contract to '[RegisterAttribute("STAGED_SESSION_ACTIVATION_FAILED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.StagedSession Android.Content.PM.PackageInstaller.SessionInfo.StagedSessionNoError' changed from '[RegisterAttribute("STAGED_SESSION_NO_ERROR")]' in the contract to '[RegisterAttribute("STAGED_SESSION_NO_ERROR", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.StagedSession Android.Content.PM.PackageInstaller.SessionInfo.StagedSessionUnknown' changed from '[RegisterAttribute("STAGED_SESSION_UNKNOWN")]' in the contract to '[RegisterAttribute("STAGED_SESSION_UNKNOWN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.StagedSession Android.Content.PM.PackageInstaller.SessionInfo.StagedSessionVerificationFailed' changed from '[RegisterAttribute("STAGED_SESSION_VERIFICATION_FAILED")]' in the contract to '[RegisterAttribute("STAGED_SESSION_VERIFICATION_FAILED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Content.PM.PackageInstaller.SessionInfo.InvalidId' changed from '[RegisterAttribute("INVALID_ID")]' in the contract to '[RegisterAttribute("INVALID_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.GetChildSessionIds()' changed from '[RegisterAttribute("getChildSessionIds", "()[I", "GetGetChildSessionIdsHandler")]' in the contract to '[RegisterAttribute("getChildSessionIds", "()[I", "GetGetChildSessionIdsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.IsCommitted.get()' changed from '[RegisterAttribute("isCommitted", "()Z", "GetIsCommittedHandler")]' in the contract to '[RegisterAttribute("isCommitted", "()Z", "GetIsCommittedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.IsMultiPackage.get()' changed from '[RegisterAttribute("isMultiPackage", "()Z", "GetIsMultiPackageHandler")]' in the contract to '[RegisterAttribute("isMultiPackage", "()Z", "GetIsMultiPackageHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.IsStaged.get()' changed from '[RegisterAttribute("isStaged", "()Z", "GetIsStagedHandler")]' in the contract to '[RegisterAttribute("isStaged", "()Z", "GetIsStagedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.IsStagedSessionApplied.get()' changed from '[RegisterAttribute("isStagedSessionApplied", "()Z", "GetIsStagedSessionAppliedHandler")]' in the contract to '[RegisterAttribute("isStagedSessionApplied", "()Z", "GetIsStagedSessionAppliedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.IsStagedSessionFailed.get()' changed from '[RegisterAttribute("isStagedSessionFailed", "()Z", "GetIsStagedSessionFailedHandler")]' in the contract to '[RegisterAttribute("isStagedSessionFailed", "()Z", "GetIsStagedSessionFailedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.IsStagedSessionReady.get()' changed from '[RegisterAttribute("isStagedSessionReady", "()Z", "GetIsStagedSessionReadyHandler")]' in the contract to '[RegisterAttribute("isStagedSessionReady", "()Z", "GetIsStagedSessionReadyHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.ParentSessionId.get()' changed from '[RegisterAttribute("getParentSessionId", "()I", "GetGetParentSessionIdHandler")]' in the contract to '[RegisterAttribute("getParentSessionId", "()I", "GetGetParentSessionIdHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.StagedSessionErrorCode.get()' changed from '[RegisterAttribute("getStagedSessionErrorCode", "()I", "GetGetStagedSessionErrorCodeHandler")]' in the contract to '[RegisterAttribute("getStagedSessionErrorCode", "()I", "GetGetStagedSessionErrorCodeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.StagedSessionErrorMessage.get()' changed from '[RegisterAttribute("getStagedSessionErrorMessage", "()Ljava/lang/String;", "GetGetStagedSessionErrorMessageHandler")]' in the contract to '[RegisterAttribute("getStagedSessionErrorMessage", "()Ljava/lang/String;", "GetGetStagedSessionErrorMessageHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.UpdatedMillis.get()' changed from '[RegisterAttribute("getUpdatedMillis", "()J", "GetGetUpdatedMillisHandler")]' in the contract to '[RegisterAttribute("getUpdatedMillis", "()J", "GetGetUpdatedMillisHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionInfo.User.get()' changed from '[RegisterAttribute("getUser", "()Landroid/os/UserHandle;", "GetGetUserHandler")]' in the contract to '[RegisterAttribute("getUser", "()Landroid/os/UserHandle;", "GetGetUserHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionParams.RestrictedPermissionsAll' changed from '[RegisterAttribute("RESTRICTED_PERMISSIONS_ALL")]' in the contract to '[RegisterAttribute("RESTRICTED_PERMISSIONS_ALL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionParams.SetMultiPackage()' changed from '[RegisterAttribute("setMultiPackage", "()V", "GetSetMultiPackageHandler")]' in the contract to '[RegisterAttribute("setMultiPackage", "()V", "GetSetMultiPackageHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageInstaller.SessionParams.SetWhitelistedRestrictedPermissions(System.Collections.Generic.ICollection)' changed from '[RegisterAttribute("setWhitelistedRestrictedPermissions", "(Ljava/util/Set;)V", "GetSetWhitelistedRestrictedPermissions_Ljava_util_Set_Handler")]' in the contract to '[RegisterAttribute("setWhitelistedRestrictedPermissions", "(Ljava/util/Set;)V", "GetSetWhitelistedRestrictedPermissions_Ljava_util_Set_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.FlagPermission Android.Content.PM.PackageManager.FlagPermissionWhitelistInstaller' changed from '[RegisterAttribute("FLAG_PERMISSION_WHITELIST_INSTALLER")]' in the contract to '[RegisterAttribute("FLAG_PERMISSION_WHITELIST_INSTALLER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.FlagPermission Android.Content.PM.PackageManager.FlagPermissionWhitelistSystem' changed from '[RegisterAttribute("FLAG_PERMISSION_WHITELIST_SYSTEM")]' in the contract to '[RegisterAttribute("FLAG_PERMISSION_WHITELIST_SYSTEM", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.FlagPermission Android.Content.PM.PackageManager.FlagPermissionWhitelistUpgrade' changed from '[RegisterAttribute("FLAG_PERMISSION_WHITELIST_UPGRADE")]' in the contract to '[RegisterAttribute("FLAG_PERMISSION_WHITELIST_UPGRADE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Content.PM.PackageManager.MatchDirectBootAuto' changed from '[RegisterAttribute("MATCH_DIRECT_BOOT_AUTO")]' in the contract to '[RegisterAttribute("MATCH_DIRECT_BOOT_AUTO", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.PM.PackageManager.FeatureFace' changed from '[RegisterAttribute("FEATURE_FACE")]' in the contract to '[RegisterAttribute("FEATURE_FACE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.PM.PackageManager.FeatureIris' changed from '[RegisterAttribute("FEATURE_IRIS")]' in the contract to '[RegisterAttribute("FEATURE_IRIS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Content.PM.PackageManager.FeatureSecureLockScreen' changed from '[RegisterAttribute("FEATURE_SECURE_LOCK_SCREEN")]' in the contract to '[RegisterAttribute("FEATURE_SECURE_LOCK_SCREEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.AddWhitelistedRestrictedPermission(System.String, System.String, Android.Content.PM.FlagPermission)' changed from '[RegisterAttribute("addWhitelistedRestrictedPermission", "(Ljava/lang/String;Ljava/lang/String;I)Z", "GetAddWhitelistedRestrictedPermission_Ljava_lang_String_Ljava_lang_String_IHandler")]' in the contract to '[RegisterAttribute("addWhitelistedRestrictedPermission", "(Ljava/lang/String;Ljava/lang/String;I)Z", "GetAddWhitelistedRestrictedPermission_Ljava_lang_String_Ljava_lang_String_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.GetInstalledModules(System.Int32)' changed from '[RegisterAttribute("getInstalledModules", "(I)Ljava/util/List;", "GetGetInstalledModules_IHandler")]' in the contract to '[RegisterAttribute("getInstalledModules", "(I)Ljava/util/List;", "GetGetInstalledModules_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.GetModuleInfo(System.String, System.Int32)' changed from '[RegisterAttribute("getModuleInfo", "(Ljava/lang/String;I)Landroid/content/pm/ModuleInfo;", "GetGetModuleInfo_Ljava_lang_String_IHandler")]' in the contract to '[RegisterAttribute("getModuleInfo", "(Ljava/lang/String;I)Landroid/content/pm/ModuleInfo;", "GetGetModuleInfo_Ljava_lang_String_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.GetSyntheticAppDetailsActivityEnabled(System.String)' changed from '[RegisterAttribute("getSyntheticAppDetailsActivityEnabled", "(Ljava/lang/String;)Z", "GetGetSyntheticAppDetailsActivityEnabled_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("getSyntheticAppDetailsActivityEnabled", "(Ljava/lang/String;)Z", "GetGetSyntheticAppDetailsActivityEnabled_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.GetWhitelistedRestrictedPermissions(System.String, Android.Content.PM.FlagPermission)' changed from '[RegisterAttribute("getWhitelistedRestrictedPermissions", "(Ljava/lang/String;I)Ljava/util/Set;", "GetGetWhitelistedRestrictedPermissions_Ljava_lang_String_IHandler")]' in the contract to '[RegisterAttribute("getWhitelistedRestrictedPermissions", "(Ljava/lang/String;I)Ljava/util/Set;", "GetGetWhitelistedRestrictedPermissions_Ljava_lang_String_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.InvokeIsPackageSuspended(System.String)' changed from '[RegisterAttribute("isPackageSuspended", "(Ljava/lang/String;)Z", "GetInvokeIsPackageSuspended_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("isPackageSuspended", "(Ljava/lang/String;)Z", "GetInvokeIsPackageSuspended_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.IsDeviceUpgrading.get()' changed from '[RegisterAttribute("isDeviceUpgrading", "()Z", "GetIsDeviceUpgradingHandler")]' in the contract to '[RegisterAttribute("isDeviceUpgrading", "()Z", "GetIsDeviceUpgradingHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PackageManager.RemoveWhitelistedRestrictedPermission(System.String, System.String, Android.Content.PM.FlagPermission)' changed from '[RegisterAttribute("removeWhitelistedRestrictedPermission", "(Ljava/lang/String;Ljava/lang/String;I)Z", "GetRemoveWhitelistedRestrictedPermission_Ljava_lang_String_Ljava_lang_String_IHandler")]' in the contract to '[RegisterAttribute("removeWhitelistedRestrictedPermission", "(Ljava/lang/String;Ljava/lang/String;I)Z", "GetRemoveWhitelistedRestrictedPermission_Ljava_lang_String_Ljava_lang_String_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PermissionInfoFlags Android.Content.PM.PermissionInfo.FlagHardRestricted' changed from '[RegisterAttribute("FLAG_HARD_RESTRICTED")]' in the contract to '[RegisterAttribute("FLAG_HARD_RESTRICTED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PermissionInfoFlags Android.Content.PM.PermissionInfo.FlagImmutablyRestricted' changed from '[RegisterAttribute("FLAG_IMMUTABLY_RESTRICTED")]' in the contract to '[RegisterAttribute("FLAG_IMMUTABLY_RESTRICTED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.PermissionInfoFlags Android.Content.PM.PermissionInfo.FlagSoftRestricted' changed from '[RegisterAttribute("FLAG_SOFT_RESTRICTED")]' in the contract to '[RegisterAttribute("FLAG_SOFT_RESTRICTED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ProviderInfo.ForceUriPermissions' changed from '[RegisterAttribute("forceUriPermissions")]' in the contract to '[RegisterAttribute("forceUriPermissions", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypeConnectedDevice' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_CONNECTED_DEVICE")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_CONNECTED_DEVICE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypeDataSync' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_DATA_SYNC")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_DATA_SYNC", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypeLocation' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_LOCATION")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_LOCATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypeManifest' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_MANIFEST")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_MANIFEST", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypeMediaPlayback' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_MEDIA_PLAYBACK")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_MEDIA_PLAYBACK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypeMediaProjection' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_MEDIA_PROJECTION")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_MEDIA_PROJECTION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypeNone' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_NONE")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_NONE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ForegroundService Android.Content.PM.ServiceInfo.ForegroundServiceTypePhoneCall' changed from '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_PHONE_CALL")]' in the contract to '[RegisterAttribute("FOREGROUND_SERVICE_TYPE_PHONE_CALL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ServiceInfoFlags Android.Content.PM.ServiceInfo.FlagUseAppZygote' changed from '[RegisterAttribute("FLAG_USE_APP_ZYGOTE")]' in the contract to '[RegisterAttribute("FLAG_USE_APP_ZYGOTE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ServiceInfo.ForegroundServiceType.get()' changed from '[RegisterAttribute("getForegroundServiceType", "()I", "GetGetForegroundServiceTypeHandler")]' in the contract to '[RegisterAttribute("getForegroundServiceType", "()I", "GetGetForegroundServiceTypeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ShortcutInfo.LocusId.get()' changed from '[RegisterAttribute("getLocusId", "()Landroid/content/LocusId;", "")]' in the contract to '[RegisterAttribute("getLocusId", "()Landroid/content/LocusId;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ShortcutInfo.Builder.SetLocusId(Android.Content.LocusId)' changed from '[RegisterAttribute("setLocusId", "(Landroid/content/LocusId;)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetLocusId_Landroid_content_LocusId_Handler")]' in the contract to '[RegisterAttribute("setLocusId", "(Landroid/content/LocusId;)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetLocusId_Landroid_content_LocusId_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ShortcutInfo.Builder.SetLongLived(System.Boolean)' changed from '[RegisterAttribute("setLongLived", "(Z)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetLongLived_ZHandler")]' in the contract to '[RegisterAttribute("setLongLived", "(Z)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetLongLived_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ShortcutInfo.Builder.SetPerson(Android.App.Person)' changed from '[RegisterAttribute("setPerson", "(Landroid/app/Person;)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetPerson_Landroid_app_Person_Handler")]' in the contract to '[RegisterAttribute("setPerson", "(Landroid/app/Person;)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetPerson_Landroid_app_Person_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.PM.ShortcutInfo.Builder.SetPersons(Android.App.Person[])' changed from '[RegisterAttribute("setPersons", "([Landroid/app/Person;)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetPersons_arrayLandroid_app_Person_Handler")]' in the contract to '[RegisterAttribute("setPersons", "([Landroid/app/Person;)Landroid/content/pm/ShortcutInfo$Builder;", "GetSetPersons_arrayLandroid_app_Person_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Content.Res.Resources.IdNull' changed from '[RegisterAttribute("ID_NULL")]' in the contract to '[RegisterAttribute("ID_NULL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Res.Resources.GetAttributeSetSourceResId(Android.Util.IAttributeSet)' changed from '[RegisterAttribute("getAttributeSetSourceResId", "(Landroid/util/AttributeSet;)I", "")]' in the contract to '[RegisterAttribute("getAttributeSetSourceResId", "(Landroid/util/AttributeSet;)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Res.Resources.GetFloat(System.Int32)' changed from '[RegisterAttribute("getFloat", "(I)F", "GetGetFloat_IHandler")]' in the contract to '[RegisterAttribute("getFloat", "(I)F", "GetGetFloat_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Res.Resources.Theme.GetAttributeResolutionStack(System.Int32, System.Int32, System.Int32)' changed from '[RegisterAttribute("getAttributeResolutionStack", "(III)[I", "")]' in the contract to '[RegisterAttribute("getAttributeResolutionStack", "(III)[I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Res.Resources.Theme.GetExplicitStyle(Android.Util.IAttributeSet)' changed from '[RegisterAttribute("getExplicitStyle", "(Landroid/util/AttributeSet;)I", "")]' in the contract to '[RegisterAttribute("getExplicitStyle", "(Landroid/util/AttributeSet;)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Res.Resources.Theme.Rebase()' changed from '[RegisterAttribute("rebase", "()V", "")]' in the contract to '[RegisterAttribute("rebase", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Content.Res.TypedArray.GetSourceResourceId(System.Int32, System.Int32)' changed from '[RegisterAttribute("getSourceResourceId", "(II)I", "GetGetSourceResourceId_IIHandler")]' in the contract to '[RegisterAttribute("getSourceResourceId", "(II)I", "GetGetSourceResourceId_IIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Database.Sqlite.SQLiteQueryBuilder.CursorFactory.get()' changed from '[RegisterAttribute("getCursorFactory", "()Landroid/database/sqlite/SQLiteDatabase$CursorFactory;", "GetGetCursorFactoryHandler")]' in the contract to '[RegisterAttribute("getCursorFactory", "()Landroid/database/sqlite/SQLiteDatabase$CursorFactory;", "GetGetCursorFactoryHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Database.Sqlite.SQLiteQueryBuilder.IsDistinct.get()' changed from '[RegisterAttribute("isDistinct", "()Z", "GetIsDistinctHandler")]' in the contract to '[RegisterAttribute("isDistinct", "()Z", "GetIsDistinctHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Database.Sqlite.SQLiteQueryBuilder.IsStrict.get()' changed from '[RegisterAttribute("isStrict", "()Z", "GetIsStrictHandler")]' in the contract to '[RegisterAttribute("isStrict", "()Z", "GetIsStrictHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Database.Sqlite.SQLiteQueryBuilder.ProjectionMap.get()' changed from '[RegisterAttribute("getProjectionMap", "()Ljava/util/Map;", "GetGetProjectionMapHandler")]' in the contract to '[RegisterAttribute("getProjectionMap", "()Ljava/util/Map;", "GetGetProjectionMapHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Bitmap.ColorSpace.set(Android.Graphics.ColorSpace)' changed from '[RegisterAttribute("setColorSpace", "(Landroid/graphics/ColorSpace;)V", "")]' in the contract to '[RegisterAttribute("setColorSpace", "(Landroid/graphics/ColorSpace;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Bitmap.EraseColor(System.Int64)' changed from '[RegisterAttribute("eraseColor", "(J)V", "")]' in the contract to '[RegisterAttribute("eraseColor", "(J)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Bitmap.GetColor(System.Int32, System.Int32)' changed from '[RegisterAttribute("getColor", "(II)Landroid/graphics/Color;", "")]' in the contract to '[RegisterAttribute("getColor", "(II)Landroid/graphics/Color;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Bitmap.WrapHardwareBuffer(Android.Hardware.HardwareBuffer, Android.Graphics.ColorSpace)' changed from '[RegisterAttribute("wrapHardwareBuffer", "(Landroid/hardware/HardwareBuffer;Landroid/graphics/ColorSpace;)Landroid/graphics/Bitmap;", "")]' in the contract to '[RegisterAttribute("wrapHardwareBuffer", "(Landroid/hardware/HardwareBuffer;Landroid/graphics/ColorSpace;)Landroid/graphics/Bitmap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.BlendMode' changed from '[RegisterAttribute("android/graphics/BlendMode", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/BlendMode", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.BlendModeColorFilter' changed from '[RegisterAttribute("android/graphics/BlendModeColorFilter", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/BlendModeColorFilter", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DisableZ()' changed from '[RegisterAttribute("disableZ", "()V", "GetDisableZHandler")]' in the contract to '[RegisterAttribute("disableZ", "()V", "GetDisableZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DrawColor(Android.Graphics.Color, Android.Graphics.BlendMode)' changed from '[RegisterAttribute("drawColor", "(ILandroid/graphics/BlendMode;)V", "GetDrawColor_ILandroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("drawColor", "(ILandroid/graphics/BlendMode;)V", "GetDrawColor_ILandroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DrawColor(System.Int64)' changed from '[RegisterAttribute("drawColor", "(J)V", "GetDrawColor_JHandler")]' in the contract to '[RegisterAttribute("drawColor", "(J)V", "GetDrawColor_JHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DrawColor(System.Int64, Android.Graphics.BlendMode)' changed from '[RegisterAttribute("drawColor", "(JLandroid/graphics/BlendMode;)V", "GetDrawColor_JLandroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("drawColor", "(JLandroid/graphics/BlendMode;)V", "GetDrawColor_JLandroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DrawDoubleRoundRect(Android.Graphics.RectF, System.Single, System.Single, Android.Graphics.RectF, System.Single, System.Single, Android.Graphics.Paint)' changed from '[RegisterAttribute("drawDoubleRoundRect", "(Landroid/graphics/RectF;FFLandroid/graphics/RectF;FFLandroid/graphics/Paint;)V", "GetDrawDoubleRoundRect_Landroid_graphics_RectF_FFLandroid_graphics_RectF_FFLandroid_graphics_Paint_Handler")]' in the contract to '[RegisterAttribute("drawDoubleRoundRect", "(Landroid/graphics/RectF;FFLandroid/graphics/RectF;FFLandroid/graphics/Paint;)V", "GetDrawDoubleRoundRect_Landroid_graphics_RectF_FFLandroid_graphics_RectF_FFLandroid_graphics_Paint_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DrawDoubleRoundRect(Android.Graphics.RectF, System.Single[], Android.Graphics.RectF, System.Single[], Android.Graphics.Paint)' changed from '[RegisterAttribute("drawDoubleRoundRect", "(Landroid/graphics/RectF;[FLandroid/graphics/RectF;[FLandroid/graphics/Paint;)V", "GetDrawDoubleRoundRect_Landroid_graphics_RectF_arrayFLandroid_graphics_RectF_arrayFLandroid_graphics_Paint_Handler")]' in the contract to '[RegisterAttribute("drawDoubleRoundRect", "(Landroid/graphics/RectF;[FLandroid/graphics/RectF;[FLandroid/graphics/Paint;)V", "GetDrawDoubleRoundRect_Landroid_graphics_RectF_arrayFLandroid_graphics_RectF_arrayFLandroid_graphics_Paint_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DrawRenderNode(Android.Graphics.RenderNode)' changed from '[RegisterAttribute("drawRenderNode", "(Landroid/graphics/RenderNode;)V", "GetDrawRenderNode_Landroid_graphics_RenderNode_Handler")]' in the contract to '[RegisterAttribute("drawRenderNode", "(Landroid/graphics/RenderNode;)V", "GetDrawRenderNode_Landroid_graphics_RenderNode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.DrawTextRun(Android.Graphics.Text.MeasuredText, System.Int32, System.Int32, System.Int32, System.Int32, System.Single, System.Single, System.Boolean, Android.Graphics.Paint)' changed from '[RegisterAttribute("drawTextRun", "(Landroid/graphics/text/MeasuredText;IIIIFFZLandroid/graphics/Paint;)V", "GetDrawTextRun_Landroid_graphics_text_MeasuredText_IIIIFFZLandroid_graphics_Paint_Handler")]' in the contract to '[RegisterAttribute("drawTextRun", "(Landroid/graphics/text/MeasuredText;IIIIFFZLandroid/graphics/Paint;)V", "GetDrawTextRun_Landroid_graphics_text_MeasuredText_IIIIFFZLandroid_graphics_Paint_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Canvas.EnableZ()' changed from '[RegisterAttribute("enableZ", "()V", "GetEnableZHandler")]' in the contract to '[RegisterAttribute("enableZ", "()V", "GetEnableZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.ComposeShader..ctor(Android.Graphics.Shader, Android.Graphics.Shader, Android.Graphics.BlendMode)' changed from '[RegisterAttribute(".ctor", "(Landroid/graphics/Shader;Landroid/graphics/Shader;Landroid/graphics/BlendMode;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Landroid/graphics/Shader;Landroid/graphics/Shader;Landroid/graphics/BlendMode;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.HardwareRenderer' changed from '[RegisterAttribute("android/graphics/HardwareRenderer", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/HardwareRenderer", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.HardwareRenderer.FrameRenderRequest' changed from '[RegisterAttribute("android/graphics/HardwareRenderer$FrameRenderRequest", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/HardwareRenderer$FrameRenderRequest", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.ImageDecoder.CreateSource(Java.Util.Concurrent.ICallable)' changed from '[RegisterAttribute("createSource", "(Ljava/util/concurrent/Callable;)Landroid/graphics/ImageDecoder$Source;", "")]' in the contract to '[RegisterAttribute("createSource", "(Ljava/util/concurrent/Callable;)Landroid/graphics/ImageDecoder$Source;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.ImageDecoder.IsMimeTypeSupported(System.String)' changed from '[RegisterAttribute("isMimeTypeSupported", "(Ljava/lang/String;)Z", "")]' in the contract to '[RegisterAttribute("isMimeTypeSupported", "(Ljava/lang/String;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.ImageFormatType Android.Graphics.ImageFormat.DepthJpeg' changed from '[RegisterAttribute("DEPTH_JPEG")]' in the contract to '[RegisterAttribute("DEPTH_JPEG", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.ImageFormatType Android.Graphics.ImageFormat.Heic' changed from '[RegisterAttribute("HEIC")]' in the contract to '[RegisterAttribute("HEIC", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.ImageFormatType Android.Graphics.ImageFormat.Y8' changed from '[RegisterAttribute("Y8")]' in the contract to '[RegisterAttribute("Y8", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Insets' changed from '[RegisterAttribute("android/graphics/Insets", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/Insets", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.LinearGradient..ctor(System.Single, System.Single, System.Single, System.Single, System.Int64, System.Int64, Android.Graphics.Shader.TileMode)' changed from '[RegisterAttribute(".ctor", "(FFFFJJLandroid/graphics/Shader$TileMode;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(FFFFJJLandroid/graphics/Shader$TileMode;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.LinearGradient..ctor(System.Single, System.Single, System.Single, System.Single, System.Int64[], System.Single[], Android.Graphics.Shader.TileMode)' changed from '[RegisterAttribute(".ctor", "(FFFF[J[FLandroid/graphics/Shader$TileMode;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(FFFF[J[FLandroid/graphics/Shader$TileMode;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Cursor Android.Graphics.Paint.CursorAfter' changed from '[RegisterAttribute("CURSOR_AFTER")]' in the contract to '[RegisterAttribute("CURSOR_AFTER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Cursor Android.Graphics.Paint.CursorAt' changed from '[RegisterAttribute("CURSOR_AT")]' in the contract to '[RegisterAttribute("CURSOR_AT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Cursor Android.Graphics.Paint.CursorAtOrAfter' changed from '[RegisterAttribute("CURSOR_AT_OR_AFTER")]' in the contract to '[RegisterAttribute("CURSOR_AT_OR_AFTER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Cursor Android.Graphics.Paint.CursorAtOrBefore' changed from '[RegisterAttribute("CURSOR_AT_OR_BEFORE")]' in the contract to '[RegisterAttribute("CURSOR_AT_OR_BEFORE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Cursor Android.Graphics.Paint.CursorBefore' changed from '[RegisterAttribute("CURSOR_BEFORE")]' in the contract to '[RegisterAttribute("CURSOR_BEFORE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.EndHyphenEditInsertArmenianHyphen' changed from '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_ARMENIAN_HYPHEN")]' in the contract to '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_ARMENIAN_HYPHEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.EndHyphenEditInsertHyphen' changed from '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_HYPHEN")]' in the contract to '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_HYPHEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.EndHyphenEditInsertMaqaf' changed from '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_MAQAF")]' in the contract to '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_MAQAF", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.EndHyphenEditInsertUcasHyphen' changed from '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_UCAS_HYPHEN")]' in the contract to '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_UCAS_HYPHEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.EndHyphenEditInsertZwjAndHyphen' changed from '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_ZWJ_AND_HYPHEN")]' in the contract to '[RegisterAttribute("END_HYPHEN_EDIT_INSERT_ZWJ_AND_HYPHEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.EndHyphenEditNoEdit' changed from '[RegisterAttribute("END_HYPHEN_EDIT_NO_EDIT")]' in the contract to '[RegisterAttribute("END_HYPHEN_EDIT_NO_EDIT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.EndHyphenEditReplaceWithHyphen' changed from '[RegisterAttribute("END_HYPHEN_EDIT_REPLACE_WITH_HYPHEN")]' in the contract to '[RegisterAttribute("END_HYPHEN_EDIT_REPLACE_WITH_HYPHEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.StartHyphenEditInsertHyphen' changed from '[RegisterAttribute("START_HYPHEN_EDIT_INSERT_HYPHEN")]' in the contract to '[RegisterAttribute("START_HYPHEN_EDIT_INSERT_HYPHEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.StartHyphenEditInsertZwj' changed from '[RegisterAttribute("START_HYPHEN_EDIT_INSERT_ZWJ")]' in the contract to '[RegisterAttribute("START_HYPHEN_EDIT_INSERT_ZWJ", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Graphics.Paint.StartHyphenEditNoEdit' changed from '[RegisterAttribute("START_HYPHEN_EDIT_NO_EDIT")]' in the contract to '[RegisterAttribute("START_HYPHEN_EDIT_NO_EDIT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.BlendMode.get()' changed from '[RegisterAttribute("getBlendMode", "()Landroid/graphics/BlendMode;", "GetGetBlendModeHandler")]' in the contract to '[RegisterAttribute("getBlendMode", "()Landroid/graphics/BlendMode;", "GetGetBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.BlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.ColorLong.get()' changed from '[RegisterAttribute("getColorLong", "()J", "GetGetColorLongHandler")]' in the contract to '[RegisterAttribute("getColorLong", "()J", "GetGetColorLongHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.EndHyphenEdit.get()' changed from '[RegisterAttribute("getEndHyphenEdit", "()I", "GetGetEndHyphenEditHandler")]' in the contract to '[RegisterAttribute("getEndHyphenEdit", "()I", "GetGetEndHyphenEditHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.EndHyphenEdit.set(System.Int32)' changed from '[RegisterAttribute("setEndHyphenEdit", "(I)V", "GetSetEndHyphenEdit_IHandler")]' in the contract to '[RegisterAttribute("setEndHyphenEdit", "(I)V", "GetSetEndHyphenEdit_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.GetTextBounds(Java.Lang.ICharSequence, System.Int32, System.Int32, Android.Graphics.Rect)' changed from '[RegisterAttribute("getTextBounds", "(Ljava/lang/CharSequence;IILandroid/graphics/Rect;)V", "GetGetTextBounds_Ljava_lang_CharSequence_IILandroid_graphics_Rect_Handler")]' in the contract to '[RegisterAttribute("getTextBounds", "(Ljava/lang/CharSequence;IILandroid/graphics/Rect;)V", "GetGetTextBounds_Ljava_lang_CharSequence_IILandroid_graphics_Rect_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.GetTextRunAdvances(System.Char[], System.Int32, System.Int32, System.Int32, System.Int32, System.Boolean, System.Single[], System.Int32)' changed from '[RegisterAttribute("getTextRunAdvances", "([CIIIIZ[FI)F", "GetGetTextRunAdvances_arrayCIIIIZarrayFIHandler")]' in the contract to '[RegisterAttribute("getTextRunAdvances", "([CIIIIZ[FI)F", "GetGetTextRunAdvances_arrayCIIIIZarrayFIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.GetTextRunCursor(Java.Lang.ICharSequence, System.Int32, System.Int32, System.Boolean, System.Int32, System.Int32)' changed from '[RegisterAttribute("getTextRunCursor", "(Ljava/lang/CharSequence;IIZII)I", "GetGetTextRunCursor_Ljava_lang_CharSequence_IIZIIHandler")]' in the contract to '[RegisterAttribute("getTextRunCursor", "(Ljava/lang/CharSequence;IIZII)I", "GetGetTextRunCursor_Ljava_lang_CharSequence_IIZIIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.GetTextRunCursor(System.Char[], System.Int32, System.Int32, System.Boolean, System.Int32, System.Int32)' changed from '[RegisterAttribute("getTextRunCursor", "([CIIZII)I", "GetGetTextRunCursor_arrayCIIZIIHandler")]' in the contract to '[RegisterAttribute("getTextRunCursor", "([CIIZII)I", "GetGetTextRunCursor_arrayCIIZIIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.SetShadowLayer(System.Single, System.Single, System.Single, System.Int64)' changed from '[RegisterAttribute("setShadowLayer", "(FFFJ)V", "GetSetShadowLayer_FFFJHandler")]' in the contract to '[RegisterAttribute("setShadowLayer", "(FFFJ)V", "GetSetShadowLayer_FFFJHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.ShadowLayerColor.get()' changed from '[RegisterAttribute("getShadowLayerColor", "()I", "GetGetShadowLayerColorHandler")]' in the contract to '[RegisterAttribute("getShadowLayerColor", "()I", "GetGetShadowLayerColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.ShadowLayerColorLong.get()' changed from '[RegisterAttribute("getShadowLayerColorLong", "()J", "GetGetShadowLayerColorLongHandler")]' in the contract to '[RegisterAttribute("getShadowLayerColorLong", "()J", "GetGetShadowLayerColorLongHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.ShadowLayerDx.get()' changed from '[RegisterAttribute("getShadowLayerDx", "()F", "GetGetShadowLayerDxHandler")]' in the contract to '[RegisterAttribute("getShadowLayerDx", "()F", "GetGetShadowLayerDxHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.ShadowLayerDy.get()' changed from '[RegisterAttribute("getShadowLayerDy", "()F", "GetGetShadowLayerDyHandler")]' in the contract to '[RegisterAttribute("getShadowLayerDy", "()F", "GetGetShadowLayerDyHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.ShadowLayerRadius.get()' changed from '[RegisterAttribute("getShadowLayerRadius", "()F", "GetGetShadowLayerRadiusHandler")]' in the contract to '[RegisterAttribute("getShadowLayerRadius", "()F", "GetGetShadowLayerRadiusHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.StartHyphenEdit.get()' changed from '[RegisterAttribute("getStartHyphenEdit", "()I", "GetGetStartHyphenEditHandler")]' in the contract to '[RegisterAttribute("getStartHyphenEdit", "()I", "GetGetStartHyphenEditHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.StartHyphenEdit.set(System.Int32)' changed from '[RegisterAttribute("setStartHyphenEdit", "(I)V", "GetSetStartHyphenEdit_IHandler")]' in the contract to '[RegisterAttribute("setStartHyphenEdit", "(I)V", "GetSetStartHyphenEdit_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.StrikeThruPosition.get()' changed from '[RegisterAttribute("getStrikeThruPosition", "()F", "GetGetStrikeThruPositionHandler")]' in the contract to '[RegisterAttribute("getStrikeThruPosition", "()F", "GetGetStrikeThruPositionHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.StrikeThruThickness.get()' changed from '[RegisterAttribute("getStrikeThruThickness", "()F", "GetGetStrikeThruThicknessHandler")]' in the contract to '[RegisterAttribute("getStrikeThruThickness", "()F", "GetGetStrikeThruThicknessHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.UnderlinePosition.get()' changed from '[RegisterAttribute("getUnderlinePosition", "()F", "GetGetUnderlinePositionHandler")]' in the contract to '[RegisterAttribute("getUnderlinePosition", "()F", "GetGetUnderlinePositionHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.UnderlineThickness.get()' changed from '[RegisterAttribute("getUnderlineThickness", "()F", "GetGetUnderlineThicknessHandler")]' in the contract to '[RegisterAttribute("getUnderlineThickness", "()F", "GetGetUnderlineThicknessHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.WordSpacing.get()' changed from '[RegisterAttribute("getWordSpacing", "()F", "GetGetWordSpacingHandler")]' in the contract to '[RegisterAttribute("getWordSpacing", "()F", "GetGetWordSpacingHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Paint.WordSpacing.set(System.Single)' changed from '[RegisterAttribute("setWordSpacing", "(F)V", "GetSetWordSpacing_FHandler")]' in the contract to '[RegisterAttribute("setWordSpacing", "(F)V", "GetSetWordSpacing_FHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.RadialGradient..ctor(System.Single, System.Single, System.Single, System.Int64, System.Int64, Android.Graphics.Shader.TileMode)' changed from '[RegisterAttribute(".ctor", "(FFFJJLandroid/graphics/Shader$TileMode;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(FFFJJLandroid/graphics/Shader$TileMode;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.RadialGradient..ctor(System.Single, System.Single, System.Single, System.Int64[], System.Single[], Android.Graphics.Shader.TileMode)' changed from '[RegisterAttribute(".ctor", "(FFF[J[FLandroid/graphics/Shader$TileMode;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(FFF[J[FLandroid/graphics/Shader$TileMode;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.RecordingCanvas' changed from '[RegisterAttribute("android/graphics/RecordingCanvas", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/RecordingCanvas", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.RenderNode' changed from '[RegisterAttribute("android/graphics/RenderNode", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/RenderNode", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.SweepGradient..ctor(System.Single, System.Single, System.Int64, System.Int64)' changed from '[RegisterAttribute(".ctor", "(FFJJ)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(FFJJ)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.SweepGradient..ctor(System.Single, System.Single, System.Int64[], System.Single[])' changed from '[RegisterAttribute(".ctor", "(FF[J[F)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(FF[J[F)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Typeface.CustomFallbackBuilder' changed from '[RegisterAttribute("android/graphics/Typeface$CustomFallbackBuilder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/Typeface$CustomFallbackBuilder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.ColorStateListDrawable' changed from '[RegisterAttribute("android/graphics/drawable/ColorStateListDrawable", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/drawable/ColorStateListDrawable", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.Drawable.IsProjected.get()' changed from '[RegisterAttribute("isProjected", "()Z", "GetIsProjectedHandler")]' in the contract to '[RegisterAttribute("isProjected", "()Z", "GetIsProjectedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.Drawable.OpticalInsets.get()' changed from '[RegisterAttribute("getOpticalInsets", "()Landroid/graphics/Insets;", "GetGetOpticalInsetsHandler")]' in the contract to '[RegisterAttribute("getOpticalInsets", "()Landroid/graphics/Insets;", "GetGetOpticalInsetsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.Drawable.SetTintBlendMode(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.InnerRadius.get()' changed from '[RegisterAttribute("getInnerRadius", "()I", "GetGetInnerRadiusHandler")]' in the contract to '[RegisterAttribute("getInnerRadius", "()I", "GetGetInnerRadiusHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.InnerRadius.set(System.Int32)' changed from '[RegisterAttribute("setInnerRadius", "(I)V", "GetSetInnerRadius_IHandler")]' in the contract to '[RegisterAttribute("setInnerRadius", "(I)V", "GetSetInnerRadius_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.InnerRadiusRatio.get()' changed from '[RegisterAttribute("getInnerRadiusRatio", "()F", "GetGetInnerRadiusRatioHandler")]' in the contract to '[RegisterAttribute("getInnerRadiusRatio", "()F", "GetGetInnerRadiusRatioHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.InnerRadiusRatio.set(System.Single)' changed from '[RegisterAttribute("setInnerRadiusRatio", "(F)V", "GetSetInnerRadiusRatio_FHandler")]' in the contract to '[RegisterAttribute("setInnerRadiusRatio", "(F)V", "GetSetInnerRadiusRatio_FHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.SetColors(System.Int32[], System.Single[])' changed from '[RegisterAttribute("setColors", "([I[F)V", "GetSetColors_arrayIarrayFHandler")]' in the contract to '[RegisterAttribute("setColors", "([I[F)V", "GetSetColors_arrayIarrayFHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.SetPadding(System.Int32, System.Int32, System.Int32, System.Int32)' changed from '[RegisterAttribute("setPadding", "(IIII)V", "GetSetPadding_IIIIHandler")]' in the contract to '[RegisterAttribute("setPadding", "(IIII)V", "GetSetPadding_IIIIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.Thickness.get()' changed from '[RegisterAttribute("getThickness", "()I", "GetGetThicknessHandler")]' in the contract to '[RegisterAttribute("getThickness", "()I", "GetGetThicknessHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.Thickness.set(System.Int32)' changed from '[RegisterAttribute("setThickness", "(I)V", "GetSetThickness_IHandler")]' in the contract to '[RegisterAttribute("setThickness", "(I)V", "GetSetThickness_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.ThicknessRatio.get()' changed from '[RegisterAttribute("getThicknessRatio", "()F", "GetGetThicknessRatioHandler")]' in the contract to '[RegisterAttribute("getThicknessRatio", "()F", "GetGetThicknessRatioHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.GradientDrawable.ThicknessRatio.set(System.Single)' changed from '[RegisterAttribute("setThicknessRatio", "(F)V", "GetSetThicknessRatio_FHandler")]' in the contract to '[RegisterAttribute("setThicknessRatio", "(F)V", "GetSetThicknessRatio_FHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.Icon.SetTintBlendMode(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setTintBlendMode", "(Landroid/graphics/BlendMode;)Landroid/graphics/drawable/Icon;", "")]' in the contract to '[RegisterAttribute("setTintBlendMode", "(Landroid/graphics/BlendMode;)Landroid/graphics/drawable/Icon;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.StateListDrawable.FindStateDrawableIndex(System.Int32[])' changed from '[RegisterAttribute("findStateDrawableIndex", "([I)I", "GetFindStateDrawableIndex_arrayIHandler")]' in the contract to '[RegisterAttribute("findStateDrawableIndex", "([I)I", "GetFindStateDrawableIndex_arrayIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.StateListDrawable.GetStateDrawable(System.Int32)' changed from '[RegisterAttribute("getStateDrawable", "(I)Landroid/graphics/drawable/Drawable;", "GetGetStateDrawable_IHandler")]' in the contract to '[RegisterAttribute("getStateDrawable", "(I)Landroid/graphics/drawable/Drawable;", "GetGetStateDrawable_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.StateListDrawable.GetStateSet(System.Int32)' changed from '[RegisterAttribute("getStateSet", "(I)[I", "GetGetStateSet_IHandler")]' in the contract to '[RegisterAttribute("getStateSet", "(I)[I", "GetGetStateSet_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Drawables.StateListDrawable.StateCount.get()' changed from '[RegisterAttribute("getStateCount", "()I", "GetGetStateCountHandler")]' in the contract to '[RegisterAttribute("getStateCount", "()I", "GetGetStateCountHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Fonts.Font' changed from '[RegisterAttribute("android/graphics/fonts/Font", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/fonts/Font", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Fonts.Font.Builder' changed from '[RegisterAttribute("android/graphics/fonts/Font$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/fonts/Font$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Fonts.FontFamily' changed from '[RegisterAttribute("android/graphics/fonts/FontFamily", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/fonts/FontFamily", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Fonts.FontFamily.Builder' changed from '[RegisterAttribute("android/graphics/fonts/FontFamily$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/fonts/FontFamily$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Fonts.FontStyle' changed from '[RegisterAttribute("android/graphics/fonts/FontStyle", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/fonts/FontStyle", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Fonts.SystemFonts' changed from '[RegisterAttribute("android/graphics/fonts/SystemFonts", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/fonts/SystemFonts", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Text.LineBreaker' changed from '[RegisterAttribute("android/graphics/text/LineBreaker", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/text/LineBreaker", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Text.LineBreaker.Builder' changed from '[RegisterAttribute("android/graphics/text/LineBreaker$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/text/LineBreaker$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Text.LineBreaker.ParagraphConstraints' changed from '[RegisterAttribute("android/graphics/text/LineBreaker$ParagraphConstraints", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/text/LineBreaker$ParagraphConstraints", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Text.LineBreaker.Result' changed from '[RegisterAttribute("android/graphics/text/LineBreaker$Result", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/text/LineBreaker$Result", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Text.MeasuredText' changed from '[RegisterAttribute("android/graphics/text/MeasuredText", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/text/MeasuredText", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Graphics.Text.MeasuredText.Builder' changed from '[RegisterAttribute("android/graphics/text/MeasuredText$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/graphics/text/MeasuredText$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Biometrics.BiometricManager' changed from '[RegisterAttribute("android/hardware/biometrics/BiometricManager", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/hardware/biometrics/BiometricManager", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Biometrics.BiometricErrorCode Android.Hardware.Biometrics.BiometricPrompt.BiometricErrorNoDeviceCredential' changed from '[RegisterAttribute("BIOMETRIC_ERROR_NO_DEVICE_CREDENTIAL")]' in the contract to '[RegisterAttribute("BIOMETRIC_ERROR_NO_DEVICE_CREDENTIAL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Biometrics.BiometricPrompt.Builder.SetConfirmationRequired(System.Boolean)' changed from '[RegisterAttribute("setConfirmationRequired", "(Z)Landroid/hardware/biometrics/BiometricPrompt$Builder;", "GetSetConfirmationRequired_ZHandler")]' in the contract to '[RegisterAttribute("setConfirmationRequired", "(Z)Landroid/hardware/biometrics/BiometricPrompt$Builder;", "GetSetConfirmationRequired_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Biometrics.BiometricPrompt.Builder.SetDeviceCredentialAllowed(System.Boolean)' changed from '[RegisterAttribute("setDeviceCredentialAllowed", "(Z)Landroid/hardware/biometrics/BiometricPrompt$Builder;", "GetSetDeviceCredentialAllowed_ZHandler")]' in the contract to '[RegisterAttribute("setDeviceCredentialAllowed", "(Z)Landroid/hardware/biometrics/BiometricPrompt$Builder;", "GetSetDeviceCredentialAllowed_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CameraCharacteristics.ScalerMandatoryStreamCombinations' changed from '[RegisterAttribute("SCALER_MANDATORY_STREAM_COMBINATIONS")]' in the contract to '[RegisterAttribute("SCALER_MANDATORY_STREAM_COMBINATIONS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CameraCharacteristics.GetRecommendedStreamConfigurationMap(Android.Hardware.Camera2.Params.UsecaseMode)' changed from '[RegisterAttribute("getRecommendedStreamConfigurationMap", "(I)Landroid/hardware/camera2/params/RecommendedStreamConfigurationMap;", "")]' in the contract to '[RegisterAttribute("getRecommendedStreamConfigurationMap", "(I)Landroid/hardware/camera2/params/RecommendedStreamConfigurationMap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CameraCharacteristics.KeysNeedingPermission.get()' changed from '[RegisterAttribute("getKeysNeedingPermission", "()Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("getKeysNeedingPermission", "()Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CameraCharacteristics.Key..ctor(System.String, Java.Lang.Class)' changed from '[RegisterAttribute(".ctor", "(Ljava/lang/String;Ljava/lang/Class;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/lang/String;Ljava/lang/Class;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CameraDevice.IsSessionConfigurationSupported(Android.Hardware.Camera2.Params.SessionConfiguration)' changed from '[RegisterAttribute("isSessionConfigurationSupported", "(Landroid/hardware/camera2/params/SessionConfiguration;)Z", "GetIsSessionConfigurationSupported_Landroid_hardware_camera2_params_SessionConfiguration_Handler")]' in the contract to '[RegisterAttribute("isSessionConfigurationSupported", "(Landroid/hardware/camera2/params/SessionConfiguration;)Z", "GetIsSessionConfigurationSupported_Landroid_hardware_camera2_params_SessionConfiguration_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CameraManager.AvailabilityCallback.OnCameraAccessPrioritiesChanged()' changed from '[RegisterAttribute("onCameraAccessPrioritiesChanged", "()V", "GetOnCameraAccessPrioritiesChangedHandler")]' in the contract to '[RegisterAttribute("onCameraAccessPrioritiesChanged", "()V", "GetOnCameraAccessPrioritiesChangedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CaptureFailure.PhysicalCameraId.get()' changed from '[RegisterAttribute("getPhysicalCameraId", "()Ljava/lang/String;", "GetGetPhysicalCameraIdHandler")]' in the contract to '[RegisterAttribute("getPhysicalCameraId", "()Ljava/lang/String;", "GetGetPhysicalCameraIdHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CaptureRequest.Key..ctor(System.String, Java.Lang.Class)' changed from '[RegisterAttribute(".ctor", "(Ljava/lang/String;Ljava/lang/Class;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/lang/String;Ljava/lang/Class;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CaptureResult.LogicalMultiCameraActivePhysicalId' changed from '[RegisterAttribute("LOGICAL_MULTI_CAMERA_ACTIVE_PHYSICAL_ID")]' in the contract to '[RegisterAttribute("LOGICAL_MULTI_CAMERA_ACTIVE_PHYSICAL_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.CaptureResult.Key..ctor(System.String, Java.Lang.Class)' changed from '[RegisterAttribute(".ctor", "(Ljava/lang/String;Ljava/lang/Class;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/lang/String;Ljava/lang/Class;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.Params.MandatoryStreamCombination' changed from '[RegisterAttribute("android/hardware/camera2/params/MandatoryStreamCombination", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/hardware/camera2/params/MandatoryStreamCombination", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.Params.MandatoryStreamCombination.MandatoryStreamInformation' changed from '[RegisterAttribute("android/hardware/camera2/params/MandatoryStreamCombination$MandatoryStreamInformation", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/hardware/camera2/params/MandatoryStreamCombination$MandatoryStreamInformation", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.Params.RecommendedStreamConfigurationMap' changed from '[RegisterAttribute("android/hardware/camera2/params/RecommendedStreamConfigurationMap", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/hardware/camera2/params/RecommendedStreamConfigurationMap", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Hardware.Camera2.Params.SessionConfiguration.Creator' changed from '[RegisterAttribute("CREATOR")]' in the contract to '[RegisterAttribute("CREATOR", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssClock.ElapsedRealtimeNanos.get()' changed from '[RegisterAttribute("getElapsedRealtimeNanos", "()J", "")]' in the contract to '[RegisterAttribute("getElapsedRealtimeNanos", "()J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssClock.ElapsedRealtimeUncertaintyNanos.get()' changed from '[RegisterAttribute("getElapsedRealtimeUncertaintyNanos", "()D", "")]' in the contract to '[RegisterAttribute("getElapsedRealtimeUncertaintyNanos", "()D", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssClock.HasElapsedRealtimeNanos.get()' changed from '[RegisterAttribute("hasElapsedRealtimeNanos", "()Z", "")]' in the contract to '[RegisterAttribute("hasElapsedRealtimeNanos", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssClock.HasElapsedRealtimeUncertaintyNanos.get()' changed from '[RegisterAttribute("hasElapsedRealtimeUncertaintyNanos", "()Z", "")]' in the contract to '[RegisterAttribute("hasElapsedRealtimeUncertaintyNanos", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssState Android.Locations.GnssMeasurement.State2ndCodeLock' changed from '[RegisterAttribute("STATE_2ND_CODE_LOCK")]' in the contract to '[RegisterAttribute("STATE_2ND_CODE_LOCK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssMeasurement.CodeType.get()' changed from '[RegisterAttribute("getCodeType", "()Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getCodeType", "()Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssMeasurement.HasCodeType.get()' changed from '[RegisterAttribute("hasCodeType", "()Z", "")]' in the contract to '[RegisterAttribute("hasCodeType", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.GnssConstellationType Android.Locations.GnssStatus.ConstellationIrnss' changed from '[RegisterAttribute("CONSTELLATION_IRNSS")]' in the contract to '[RegisterAttribute("CONSTELLATION_IRNSS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.Location.ElapsedRealtimeUncertaintyNanos.get()' changed from '[RegisterAttribute("getElapsedRealtimeUncertaintyNanos", "()D", "GetGetElapsedRealtimeUncertaintyNanosHandler")]' in the contract to '[RegisterAttribute("getElapsedRealtimeUncertaintyNanos", "()D", "GetGetElapsedRealtimeUncertaintyNanosHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.Location.ElapsedRealtimeUncertaintyNanos.set(System.Double)' changed from '[RegisterAttribute("setElapsedRealtimeUncertaintyNanos", "(D)V", "GetSetElapsedRealtimeUncertaintyNanos_DHandler")]' in the contract to '[RegisterAttribute("setElapsedRealtimeUncertaintyNanos", "(D)V", "GetSetElapsedRealtimeUncertaintyNanos_DHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.Location.HasElapsedRealtimeUncertaintyNanos.get()' changed from '[RegisterAttribute("hasElapsedRealtimeUncertaintyNanos", "()Z", "GetHasElapsedRealtimeUncertaintyNanosHandler")]' in the contract to '[RegisterAttribute("hasElapsedRealtimeUncertaintyNanos", "()Z", "GetHasElapsedRealtimeUncertaintyNanosHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Locations.LocationManager.ExtraProviderName' changed from '[RegisterAttribute("EXTRA_PROVIDER_NAME")]' in the contract to '[RegisterAttribute("EXTRA_PROVIDER_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Locations.SettingInjectorService.RefreshSettings(Android.Content.Context)' changed from '[RegisterAttribute("refreshSettings", "(Landroid/content/Context;)V", "")]' in the contract to '[RegisterAttribute("refreshSettings", "(Landroid/content/Context;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.CapturePolicies Android.Media.AudioAttributes.AllowCaptureByAll' changed from '[RegisterAttribute("ALLOW_CAPTURE_BY_ALL")]' in the contract to '[RegisterAttribute("ALLOW_CAPTURE_BY_ALL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.CapturePolicies Android.Media.AudioAttributes.AllowCaptureByNone' changed from '[RegisterAttribute("ALLOW_CAPTURE_BY_NONE")]' in the contract to '[RegisterAttribute("ALLOW_CAPTURE_BY_NONE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.CapturePolicies Android.Media.AudioAttributes.AllowCaptureBySystem' changed from '[RegisterAttribute("ALLOW_CAPTURE_BY_SYSTEM")]' in the contract to '[RegisterAttribute("ALLOW_CAPTURE_BY_SYSTEM", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioAttributes.AllowedCapturePolicy.get()' changed from '[RegisterAttribute("getAllowedCapturePolicy", "()I", "")]' in the contract to '[RegisterAttribute("getAllowedCapturePolicy", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioAttributes.AreHapticChannelsMuted()' changed from '[RegisterAttribute("areHapticChannelsMuted", "()Z", "")]' in the contract to '[RegisterAttribute("areHapticChannelsMuted", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioAttributes.Builder.SetAllowedCapturePolicy(Android.Media.CapturePolicies)' changed from '[RegisterAttribute("setAllowedCapturePolicy", "(I)Landroid/media/AudioAttributes$Builder;", "GetSetAllowedCapturePolicy_IHandler")]' in the contract to '[RegisterAttribute("setAllowedCapturePolicy", "(I)Landroid/media/AudioAttributes$Builder;", "GetSetAllowedCapturePolicy_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioAttributes.Builder.SetHapticChannelsMuted(System.Boolean)' changed from '[RegisterAttribute("setHapticChannelsMuted", "(Z)Landroid/media/AudioAttributes$Builder;", "GetSetHapticChannelsMuted_ZHandler")]' in the contract to '[RegisterAttribute("setHapticChannelsMuted", "(Z)Landroid/media/AudioAttributes$Builder;", "GetSetHapticChannelsMuted_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioFormat.FrameSizeInBytes.get()' changed from '[RegisterAttribute("getFrameSizeInBytes", "()I", "GetGetFrameSizeInBytesHandler")]' in the contract to '[RegisterAttribute("getFrameSizeInBytes", "()I", "GetGetFrameSizeInBytesHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.AudioManager.ActionSpeakerphoneStateChanged' changed from '[RegisterAttribute("ACTION_SPEAKERPHONE_STATE_CHANGED")]' in the contract to '[RegisterAttribute("ACTION_SPEAKERPHONE_STATE_CHANGED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioManager.AllowedCapturePolicy.get()' changed from '[RegisterAttribute("getAllowedCapturePolicy", "()I", "GetGetAllowedCapturePolicyHandler")]' in the contract to '[RegisterAttribute("getAllowedCapturePolicy", "()I", "GetGetAllowedCapturePolicyHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioManager.AllowedCapturePolicy.set(Android.Media.CapturePolicies)' changed from '[RegisterAttribute("setAllowedCapturePolicy", "(I)V", "GetSetAllowedCapturePolicy_IHandler")]' in the contract to '[RegisterAttribute("setAllowedCapturePolicy", "(I)V", "GetSetAllowedCapturePolicy_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioManager.IsHapticPlaybackSupported.get()' changed from '[RegisterAttribute("isHapticPlaybackSupported", "()Z", "")]' in the contract to '[RegisterAttribute("isHapticPlaybackSupported", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioManager.IsOffloadedPlaybackSupported(Android.Media.AudioFormat, Android.Media.AudioAttributes)' changed from '[RegisterAttribute("isOffloadedPlaybackSupported", "(Landroid/media/AudioFormat;Landroid/media/AudioAttributes;)Z", "")]' in the contract to '[RegisterAttribute("isOffloadedPlaybackSupported", "(Landroid/media/AudioFormat;Landroid/media/AudioAttributes;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioPlaybackCaptureConfiguration' changed from '[RegisterAttribute("android/media/AudioPlaybackCaptureConfiguration", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/AudioPlaybackCaptureConfiguration", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioPlaybackCaptureConfiguration.Builder' changed from '[RegisterAttribute("android/media/AudioPlaybackCaptureConfiguration$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/AudioPlaybackCaptureConfiguration$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioPresentation.PresentationId.get()' changed from '[RegisterAttribute("getPresentationId", "()I", "")]' in the contract to '[RegisterAttribute("getPresentationId", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioPresentation.ProgramId.get()' changed from '[RegisterAttribute("getProgramId", "()I", "")]' in the contract to '[RegisterAttribute("getProgramId", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioPresentation.Builder' changed from '[RegisterAttribute("android/media/AudioPresentation$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/AudioPresentation$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioRecord.Builder.SetAudioPlaybackCaptureConfig(Android.Media.AudioPlaybackCaptureConfiguration)' changed from '[RegisterAttribute("setAudioPlaybackCaptureConfig", "(Landroid/media/AudioPlaybackCaptureConfiguration;)Landroid/media/AudioRecord$Builder;", "GetSetAudioPlaybackCaptureConfig_Landroid_media_AudioPlaybackCaptureConfiguration_Handler")]' in the contract to '[RegisterAttribute("setAudioPlaybackCaptureConfig", "(Landroid/media/AudioPlaybackCaptureConfiguration;)Landroid/media/AudioRecord$Builder;", "GetSetAudioPlaybackCaptureConfig_Landroid_media_AudioPlaybackCaptureConfiguration_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioRecordingConfiguration.AudioSource.get()' changed from '[RegisterAttribute("getAudioSource", "()I", "")]' in the contract to '[RegisterAttribute("getAudioSource", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioRecordingConfiguration.ClientEffects.get()' changed from '[RegisterAttribute("getClientEffects", "()Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("getClientEffects", "()Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioRecordingConfiguration.Effects.get()' changed from '[RegisterAttribute("getEffects", "()Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("getEffects", "()Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioRecordingConfiguration.IsClientSilenced.get()' changed from '[RegisterAttribute("isClientSilenced", "()Z", "")]' in the contract to '[RegisterAttribute("isClientSilenced", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.AudioAttributes.get()' changed from '[RegisterAttribute("getAudioAttributes", "()Landroid/media/AudioAttributes;", "GetGetAudioAttributesHandler")]' in the contract to '[RegisterAttribute("getAudioAttributes", "()Landroid/media/AudioAttributes;", "GetGetAudioAttributesHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.IsDirectPlaybackSupported(Android.Media.AudioFormat, Android.Media.AudioAttributes)' changed from '[RegisterAttribute("isDirectPlaybackSupported", "(Landroid/media/AudioFormat;Landroid/media/AudioAttributes;)Z", "")]' in the contract to '[RegisterAttribute("isDirectPlaybackSupported", "(Landroid/media/AudioFormat;Landroid/media/AudioAttributes;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.IsOffloadedPlayback.get()' changed from '[RegisterAttribute("isOffloadedPlayback", "()Z", "GetIsOffloadedPlaybackHandler")]' in the contract to '[RegisterAttribute("isOffloadedPlayback", "()Z", "GetIsOffloadedPlaybackHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.OffloadDelay.get()' changed from '[RegisterAttribute("getOffloadDelay", "()I", "GetGetOffloadDelayHandler")]' in the contract to '[RegisterAttribute("getOffloadDelay", "()I", "GetGetOffloadDelayHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.OffloadPadding.get()' changed from '[RegisterAttribute("getOffloadPadding", "()I", "GetGetOffloadPaddingHandler")]' in the contract to '[RegisterAttribute("getOffloadPadding", "()I", "GetGetOffloadPaddingHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.RegisterStreamEventCallback(Java.Util.Concurrent.IExecutor, Android.Media.AudioTrack.StreamEventCallback)' changed from '[RegisterAttribute("registerStreamEventCallback", "(Ljava/util/concurrent/Executor;Landroid/media/AudioTrack$StreamEventCallback;)V", "GetRegisterStreamEventCallback_Ljava_util_concurrent_Executor_Landroid_media_AudioTrack_StreamEventCallback_Handler")]' in the contract to '[RegisterAttribute("registerStreamEventCallback", "(Ljava/util/concurrent/Executor;Landroid/media/AudioTrack$StreamEventCallback;)V", "GetRegisterStreamEventCallback_Ljava_util_concurrent_Executor_Landroid_media_AudioTrack_StreamEventCallback_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.SetOffloadDelayPadding(System.Int32, System.Int32)' changed from '[RegisterAttribute("setOffloadDelayPadding", "(II)V", "GetSetOffloadDelayPadding_IIHandler")]' in the contract to '[RegisterAttribute("setOffloadDelayPadding", "(II)V", "GetSetOffloadDelayPadding_IIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.SetOffloadEndOfStream()' changed from '[RegisterAttribute("setOffloadEndOfStream", "()V", "GetSetOffloadEndOfStreamHandler")]' in the contract to '[RegisterAttribute("setOffloadEndOfStream", "()V", "GetSetOffloadEndOfStreamHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.UnregisterStreamEventCallback(Android.Media.AudioTrack.StreamEventCallback)' changed from '[RegisterAttribute("unregisterStreamEventCallback", "(Landroid/media/AudioTrack$StreamEventCallback;)V", "GetUnregisterStreamEventCallback_Landroid_media_AudioTrack_StreamEventCallback_Handler")]' in the contract to '[RegisterAttribute("unregisterStreamEventCallback", "(Landroid/media/AudioTrack$StreamEventCallback;)V", "GetUnregisterStreamEventCallback_Landroid_media_AudioTrack_StreamEventCallback_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.Builder.SetOffloadedPlayback(System.Boolean)' changed from '[RegisterAttribute("setOffloadedPlayback", "(Z)Landroid/media/AudioTrack$Builder;", "GetSetOffloadedPlayback_ZHandler")]' in the contract to '[RegisterAttribute("setOffloadedPlayback", "(Z)Landroid/media/AudioTrack$Builder;", "GetSetOffloadedPlayback_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.AudioTrack.StreamEventCallback' changed from '[RegisterAttribute("android/media/AudioTrack$StreamEventCallback", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/AudioTrack$StreamEventCallback", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.ExifInterface.TagXmp' changed from '[RegisterAttribute("TAG_XMP")]' in the contract to '[RegisterAttribute("TAG_XMP", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ExifInterface..ctor(Java.IO.File)' changed from '[RegisterAttribute(".ctor", "(Ljava/io/File;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/io/File;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ExifInterface.GetAttributeBytes(System.String)' changed from '[RegisterAttribute("getAttributeBytes", "(Ljava/lang/String;)[B", "GetGetAttributeBytes_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("getAttributeBytes", "(Ljava/lang/String;)[B", "GetGetAttributeBytes_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ExifInterface.GetAttributeRange(System.String)' changed from '[RegisterAttribute("getAttributeRange", "(Ljava/lang/String;)[J", "GetGetAttributeRange_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("getAttributeRange", "(Ljava/lang/String;)[J", "GetGetAttributeRange_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ExifInterface.HasAttribute(System.String)' changed from '[RegisterAttribute("hasAttribute", "(Ljava/lang/String;)Z", "GetHasAttribute_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("hasAttribute", "(Ljava/lang/String;)Z", "GetHasAttribute_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.IAudioRecordingMonitor' changed from '[RegisterAttribute("android/media/AudioRecordingMonitor", "", "Android.Media.IAudioRecordingMonitorInvoker")]' in the contract to '[RegisterAttribute("android/media/AudioRecordingMonitor", "", "Android.Media.IAudioRecordingMonitorInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ImageReader.NewInstance(System.Int32, System.Int32, Android.Graphics.ImageFormatType, System.Int32, System.Int64)' changed from '[RegisterAttribute("newInstance", "(IIIIJ)Landroid/media/ImageReader;", "")]' in the contract to '[RegisterAttribute("newInstance", "(IIIIJ)Landroid/media/ImageReader;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ImageWriter.NewInstance(Android.Views.Surface, System.Int32, Android.Graphics.ImageFormatType)' changed from '[RegisterAttribute("newInstance", "(Landroid/view/Surface;II)Landroid/media/ImageWriter;", "")]' in the contract to '[RegisterAttribute("newInstance", "(Landroid/view/Surface;II)Landroid/media/ImageWriter;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.IMicrophoneDirection' changed from '[RegisterAttribute("android/media/MicrophoneDirection", "", "Android.Media.IMicrophoneDirectionInvoker")]' in the contract to '[RegisterAttribute("android/media/MicrophoneDirection", "", "Android.Media.IMicrophoneDirectionInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCas.Session.SendSessionEvent(System.Int32, System.Int32, System.Byte[])' changed from '[RegisterAttribute("sendSessionEvent", "(II[B)V", "")]' in the contract to '[RegisterAttribute("sendSessionEvent", "(II[B)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaCodec.ParameterKeyHdr10PlusInfo' changed from '[RegisterAttribute("PARAMETER_KEY_HDR10_PLUS_INFO")]' in the contract to '[RegisterAttribute("PARAMETER_KEY_HDR10_PLUS_INFO", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaCodec.ParameterKeyOffsetTime' changed from '[RegisterAttribute("PARAMETER_KEY_OFFSET_TIME")]' in the contract to '[RegisterAttribute("PARAMETER_KEY_OFFSET_TIME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaCodec.ParameterKeySuspendTime' changed from '[RegisterAttribute("PARAMETER_KEY_SUSPEND_TIME")]' in the contract to '[RegisterAttribute("PARAMETER_KEY_SUSPEND_TIME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodec.CanonicalName.get()' changed from '[RegisterAttribute("getCanonicalName", "()Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getCanonicalName", "()Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodec.SetAudioPresentation(Android.Media.AudioPresentation)' changed from '[RegisterAttribute("setAudioPresentation", "(Landroid/media/AudioPresentation;)V", "")]' in the contract to '[RegisterAttribute("setAudioPresentation", "(Landroid/media/AudioPresentation;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecCryptoErrorType Android.Media.MediaCodec.CryptoException.ErrorFrameTooLarge' changed from '[RegisterAttribute("ERROR_FRAME_TOO_LARGE")]' in the contract to '[RegisterAttribute("ERROR_FRAME_TOO_LARGE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecCryptoErrorType Android.Media.MediaCodec.CryptoException.ErrorInsufficientSecurity' changed from '[RegisterAttribute("ERROR_INSUFFICIENT_SECURITY")]' in the contract to '[RegisterAttribute("ERROR_INSUFFICIENT_SECURITY", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecCryptoErrorType Android.Media.MediaCodec.CryptoException.ErrorLostState' changed from '[RegisterAttribute("ERROR_LOST_STATE")]' in the contract to '[RegisterAttribute("ERROR_LOST_STATE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecInfo.CanonicalName.get()' changed from '[RegisterAttribute("getCanonicalName", "()Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getCanonicalName", "()Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecInfo.IsAlias.get()' changed from '[RegisterAttribute("isAlias", "()Z", "")]' in the contract to '[RegisterAttribute("isAlias", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecInfo.IsHardwareAccelerated.get()' changed from '[RegisterAttribute("isHardwareAccelerated", "()Z", "")]' in the contract to '[RegisterAttribute("isHardwareAccelerated", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecInfo.IsSoftwareOnly.get()' changed from '[RegisterAttribute("isSoftwareOnly", "()Z", "")]' in the contract to '[RegisterAttribute("isSoftwareOnly", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecInfo.IsVendor.get()' changed from '[RegisterAttribute("isVendor", "()Z", "")]' in the contract to '[RegisterAttribute("isVendor", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaCodecInfo.CodecCapabilities.FEATUREDynamicTimestamp' changed from '[RegisterAttribute("FEATURE_DynamicTimestamp")]' in the contract to '[RegisterAttribute("FEATURE_DynamicTimestamp", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaCodecInfo.CodecCapabilities.FEATUREFrameParsing' changed from '[RegisterAttribute("FEATURE_FrameParsing")]' in the contract to '[RegisterAttribute("FEATURE_FrameParsing", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaCodecInfo.CodecCapabilities.FEATUREMultipleFrames' changed from '[RegisterAttribute("FEATURE_MultipleFrames")]' in the contract to '[RegisterAttribute("FEATURE_MultipleFrames", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level2' changed from '[RegisterAttribute("AV1Level2")]' in the contract to '[RegisterAttribute("AV1Level2", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level21' changed from '[RegisterAttribute("AV1Level21")]' in the contract to '[RegisterAttribute("AV1Level21", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level22' changed from '[RegisterAttribute("AV1Level22")]' in the contract to '[RegisterAttribute("AV1Level22", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level23' changed from '[RegisterAttribute("AV1Level23")]' in the contract to '[RegisterAttribute("AV1Level23", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level3' changed from '[RegisterAttribute("AV1Level3")]' in the contract to '[RegisterAttribute("AV1Level3", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level31' changed from '[RegisterAttribute("AV1Level31")]' in the contract to '[RegisterAttribute("AV1Level31", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level32' changed from '[RegisterAttribute("AV1Level32")]' in the contract to '[RegisterAttribute("AV1Level32", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level33' changed from '[RegisterAttribute("AV1Level33")]' in the contract to '[RegisterAttribute("AV1Level33", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level4' changed from '[RegisterAttribute("AV1Level4")]' in the contract to '[RegisterAttribute("AV1Level4", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level41' changed from '[RegisterAttribute("AV1Level41")]' in the contract to '[RegisterAttribute("AV1Level41", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level42' changed from '[RegisterAttribute("AV1Level42")]' in the contract to '[RegisterAttribute("AV1Level42", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level43' changed from '[RegisterAttribute("AV1Level43")]' in the contract to '[RegisterAttribute("AV1Level43", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level5' changed from '[RegisterAttribute("AV1Level5")]' in the contract to '[RegisterAttribute("AV1Level5", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level51' changed from '[RegisterAttribute("AV1Level51")]' in the contract to '[RegisterAttribute("AV1Level51", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level52' changed from '[RegisterAttribute("AV1Level52")]' in the contract to '[RegisterAttribute("AV1Level52", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level53' changed from '[RegisterAttribute("AV1Level53")]' in the contract to '[RegisterAttribute("AV1Level53", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level6' changed from '[RegisterAttribute("AV1Level6")]' in the contract to '[RegisterAttribute("AV1Level6", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level61' changed from '[RegisterAttribute("AV1Level61")]' in the contract to '[RegisterAttribute("AV1Level61", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level62' changed from '[RegisterAttribute("AV1Level62")]' in the contract to '[RegisterAttribute("AV1Level62", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level63' changed from '[RegisterAttribute("AV1Level63")]' in the contract to '[RegisterAttribute("AV1Level63", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level7' changed from '[RegisterAttribute("AV1Level7")]' in the contract to '[RegisterAttribute("AV1Level7", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level71' changed from '[RegisterAttribute("AV1Level71")]' in the contract to '[RegisterAttribute("AV1Level71", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level72' changed from '[RegisterAttribute("AV1Level72")]' in the contract to '[RegisterAttribute("AV1Level72", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AV1Level73' changed from '[RegisterAttribute("AV1Level73")]' in the contract to '[RegisterAttribute("AV1Level73", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AVCLevel6' changed from '[RegisterAttribute("AVCLevel6")]' in the contract to '[RegisterAttribute("AVCLevel6", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AVCLevel61' changed from '[RegisterAttribute("AVCLevel61")]' in the contract to '[RegisterAttribute("AVCLevel61", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileLevel Android.Media.MediaCodecInfo.CodecProfileLevel.AVCLevel62' changed from '[RegisterAttribute("AVCLevel62")]' in the contract to '[RegisterAttribute("AVCLevel62", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileType Android.Media.MediaCodecInfo.CodecProfileLevel.AV1ProfileMain10' changed from '[RegisterAttribute("AV1ProfileMain10")]' in the contract to '[RegisterAttribute("AV1ProfileMain10", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileType Android.Media.MediaCodecInfo.CodecProfileLevel.AV1ProfileMain10HDR10' changed from '[RegisterAttribute("AV1ProfileMain10HDR10")]' in the contract to '[RegisterAttribute("AV1ProfileMain10HDR10", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileType Android.Media.MediaCodecInfo.CodecProfileLevel.AV1ProfileMain10HDR10Plus' changed from '[RegisterAttribute("AV1ProfileMain10HDR10Plus")]' in the contract to '[RegisterAttribute("AV1ProfileMain10HDR10Plus", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileType Android.Media.MediaCodecInfo.CodecProfileLevel.AV1ProfileMain8' changed from '[RegisterAttribute("AV1ProfileMain8")]' in the contract to '[RegisterAttribute("AV1ProfileMain8", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileType Android.Media.MediaCodecInfo.CodecProfileLevel.HEVCProfileMain10HDR10Plus' changed from '[RegisterAttribute("HEVCProfileMain10HDR10Plus")]' in the contract to '[RegisterAttribute("HEVCProfileMain10HDR10Plus", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileType Android.Media.MediaCodecInfo.CodecProfileLevel.VP9Profile2HDR10Plus' changed from '[RegisterAttribute("VP9Profile2HDR10Plus")]' in the contract to '[RegisterAttribute("VP9Profile2HDR10Plus", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecProfileType Android.Media.MediaCodecInfo.CodecProfileLevel.VP9Profile3HDR10Plus' changed from '[RegisterAttribute("VP9Profile3HDR10Plus")]' in the contract to '[RegisterAttribute("VP9Profile3HDR10Plus", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecInfo.VideoCapabilities.SupportedPerformancePoints.get()' changed from '[RegisterAttribute("getSupportedPerformancePoints", "()Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("getSupportedPerformancePoints", "()Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaCodecInfo.VideoCapabilities.PerformancePoint' changed from '[RegisterAttribute("android/media/MediaCodecInfo$VideoCapabilities$PerformancePoint", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaCodecInfo$VideoCapabilities$PerformancePoint", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaController2' changed from '[RegisterAttribute("android/media/MediaController2", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaController2", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaController2.Builder' changed from '[RegisterAttribute("android/media/MediaController2$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaController2$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaController2.ControllerCallback' changed from '[RegisterAttribute("android/media/MediaController2$ControllerCallback", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaController2$ControllerCallback", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.HdcpLevel Android.Media.MediaDrm.HdcpV23' changed from '[RegisterAttribute("HDCP_V2_3")]' in the contract to '[RegisterAttribute("HDCP_V2_3", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.OfflineLicenseState Android.Media.MediaDrm.OfflineLicenseStateReleased' changed from '[RegisterAttribute("OFFLINE_LICENSE_STATE_RELEASED")]' in the contract to '[RegisterAttribute("OFFLINE_LICENSE_STATE_RELEASED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.OfflineLicenseState Android.Media.MediaDrm.OfflineLicenseStateUnknown' changed from '[RegisterAttribute("OFFLINE_LICENSE_STATE_UNKNOWN")]' in the contract to '[RegisterAttribute("OFFLINE_LICENSE_STATE_UNKNOWN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.OfflineLicenseState Android.Media.MediaDrm.OfflineLicenseStateUsable' changed from '[RegisterAttribute("OFFLINE_LICENSE_STATE_USABLE")]' in the contract to '[RegisterAttribute("OFFLINE_LICENSE_STATE_USABLE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.ClearOnEventListener()' changed from '[RegisterAttribute("clearOnEventListener", "()V", "")]' in the contract to '[RegisterAttribute("clearOnEventListener", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.ClearOnExpirationUpdateListener()' changed from '[RegisterAttribute("clearOnExpirationUpdateListener", "()V", "")]' in the contract to '[RegisterAttribute("clearOnExpirationUpdateListener", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.ClearOnKeyStatusChangeListener()' changed from '[RegisterAttribute("clearOnKeyStatusChangeListener", "()V", "")]' in the contract to '[RegisterAttribute("clearOnKeyStatusChangeListener", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.ClearOnSessionLostStateListener()' changed from '[RegisterAttribute("clearOnSessionLostStateListener", "()V", "")]' in the contract to '[RegisterAttribute("clearOnSessionLostStateListener", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.GetOfflineLicenseState(System.Byte[])' changed from '[RegisterAttribute("getOfflineLicenseState", "([B)I", "")]' in the contract to '[RegisterAttribute("getOfflineLicenseState", "([B)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.IsCryptoSchemeSupported(Java.Util.UUID, System.String, Android.Media.SecurityLevel)' changed from '[RegisterAttribute("isCryptoSchemeSupported", "(Ljava/util/UUID;Ljava/lang/String;I)Z", "")]' in the contract to '[RegisterAttribute("isCryptoSchemeSupported", "(Ljava/util/UUID;Ljava/lang/String;I)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.OfflineLicenseKeySetIds.get()' changed from '[RegisterAttribute("getOfflineLicenseKeySetIds", "()Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("getOfflineLicenseKeySetIds", "()Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.RemoveOfflineLicense(System.Byte[])' changed from '[RegisterAttribute("removeOfflineLicense", "([B)V", "")]' in the contract to '[RegisterAttribute("removeOfflineLicense", "([B)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.SetOnEventListener(Android.Media.MediaDrm.IOnEventListener, Android.OS.Handler)' changed from '[RegisterAttribute("setOnEventListener", "(Landroid/media/MediaDrm$OnEventListener;Landroid/os/Handler;)V", "")]' in the contract to '[RegisterAttribute("setOnEventListener", "(Landroid/media/MediaDrm$OnEventListener;Landroid/os/Handler;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.SetOnEventListener(Java.Util.Concurrent.IExecutor, Android.Media.MediaDrm.IOnEventListener)' changed from '[RegisterAttribute("setOnEventListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnEventListener;)V", "")]' in the contract to '[RegisterAttribute("setOnEventListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnEventListener;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.SetOnExpirationUpdateListener(Java.Util.Concurrent.IExecutor, Android.Media.MediaDrm.IOnExpirationUpdateListener)' changed from '[RegisterAttribute("setOnExpirationUpdateListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnExpirationUpdateListener;)V", "")]' in the contract to '[RegisterAttribute("setOnExpirationUpdateListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnExpirationUpdateListener;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.SetOnKeyStatusChangeListener(Java.Util.Concurrent.IExecutor, Android.Media.MediaDrm.IOnKeyStatusChangeListener)' changed from '[RegisterAttribute("setOnKeyStatusChangeListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnKeyStatusChangeListener;)V", "")]' in the contract to '[RegisterAttribute("setOnKeyStatusChangeListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnKeyStatusChangeListener;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.SetOnSessionLostStateListener(Android.Media.MediaDrm.IOnSessionLostStateListener, Android.OS.Handler)' changed from '[RegisterAttribute("setOnSessionLostStateListener", "(Landroid/media/MediaDrm$OnSessionLostStateListener;Landroid/os/Handler;)V", "")]' in the contract to '[RegisterAttribute("setOnSessionLostStateListener", "(Landroid/media/MediaDrm$OnSessionLostStateListener;Landroid/os/Handler;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.SetOnSessionLostStateListener(Java.Util.Concurrent.IExecutor, Android.Media.MediaDrm.IOnSessionLostStateListener)' changed from '[RegisterAttribute("setOnSessionLostStateListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnSessionLostStateListener;)V", "")]' in the contract to '[RegisterAttribute("setOnSessionLostStateListener", "(Ljava/util/concurrent/Executor;Landroid/media/MediaDrm$OnSessionLostStateListener;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.IOnSessionLostStateListener' changed from '[RegisterAttribute("android/media/MediaDrm$OnSessionLostStateListener", "", "Android.Media.MediaDrm/IOnSessionLostStateListenerInvoker")]' in the contract to '[RegisterAttribute("android/media/MediaDrm$OnSessionLostStateListener", "", "Android.Media.MediaDrm/IOnSessionLostStateListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaDrm.SessionException' changed from '[RegisterAttribute("android/media/MediaDrm$SessionException", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaDrm$SessionException", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaExtractor.CasInfo.GetPrivateData()' changed from '[RegisterAttribute("getPrivateData", "()[B", "")]' in the contract to '[RegisterAttribute("getPrivateData", "()[B", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormatType Android.Media.MediaFormat.TypeByteBuffer' changed from '[RegisterAttribute("TYPE_BYTE_BUFFER")]' in the contract to '[RegisterAttribute("TYPE_BYTE_BUFFER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormatType Android.Media.MediaFormat.TypeFloat' changed from '[RegisterAttribute("TYPE_FLOAT")]' in the contract to '[RegisterAttribute("TYPE_FLOAT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormatType Android.Media.MediaFormat.TypeInteger' changed from '[RegisterAttribute("TYPE_INTEGER")]' in the contract to '[RegisterAttribute("TYPE_INTEGER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormatType Android.Media.MediaFormat.TypeLong' changed from '[RegisterAttribute("TYPE_LONG")]' in the contract to '[RegisterAttribute("TYPE_LONG", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormatType Android.Media.MediaFormat.TypeNull' changed from '[RegisterAttribute("TYPE_NULL")]' in the contract to '[RegisterAttribute("TYPE_NULL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormatType Android.Media.MediaFormat.TypeString' changed from '[RegisterAttribute("TYPE_STRING")]' in the contract to '[RegisterAttribute("TYPE_STRING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.KeyCreateInputSurfaceSuspended' changed from '[RegisterAttribute("KEY_CREATE_INPUT_SURFACE_SUSPENDED")]' in the contract to '[RegisterAttribute("KEY_CREATE_INPUT_SURFACE_SUSPENDED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.KeyHapticChannelCount' changed from '[RegisterAttribute("KEY_HAPTIC_CHANNEL_COUNT")]' in the contract to '[RegisterAttribute("KEY_HAPTIC_CHANNEL_COUNT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.KeyHdr10PlusInfo' changed from '[RegisterAttribute("KEY_HDR10_PLUS_INFO")]' in the contract to '[RegisterAttribute("KEY_HDR10_PLUS_INFO", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.KeyMaxBFrames' changed from '[RegisterAttribute("KEY_MAX_B_FRAMES")]' in the contract to '[RegisterAttribute("KEY_MAX_B_FRAMES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.KeyMaxFpsToEncoder' changed from '[RegisterAttribute("KEY_MAX_FPS_TO_ENCODER")]' in the contract to '[RegisterAttribute("KEY_MAX_FPS_TO_ENCODER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.KeyMaxPtsGapToEncoder' changed from '[RegisterAttribute("KEY_MAX_PTS_GAP_TO_ENCODER")]' in the contract to '[RegisterAttribute("KEY_MAX_PTS_GAP_TO_ENCODER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.KeyPrependHeaderToSyncFrames' changed from '[RegisterAttribute("KEY_PREPEND_HEADER_TO_SYNC_FRAMES")]' in the contract to '[RegisterAttribute("KEY_PREPEND_HEADER_TO_SYNC_FRAMES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.MimetypeAudioAc4' changed from '[RegisterAttribute("MIMETYPE_AUDIO_AC4")]' in the contract to '[RegisterAttribute("MIMETYPE_AUDIO_AC4", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.MimetypeAudioEac3Joc' changed from '[RegisterAttribute("MIMETYPE_AUDIO_EAC3_JOC")]' in the contract to '[RegisterAttribute("MIMETYPE_AUDIO_EAC3_JOC", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.MediaFormat.MimetypeVideoAv1' changed from '[RegisterAttribute("MIMETYPE_VIDEO_AV1")]' in the contract to '[RegisterAttribute("MIMETYPE_VIDEO_AV1", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat..ctor(Android.Media.MediaFormat)' changed from '[RegisterAttribute(".ctor", "(Landroid/media/MediaFormat;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Landroid/media/MediaFormat;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.ContainsFeature(System.String)' changed from '[RegisterAttribute("containsFeature", "(Ljava/lang/String;)Z", "")]' in the contract to '[RegisterAttribute("containsFeature", "(Ljava/lang/String;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.Features.get()' changed from '[RegisterAttribute("getFeatures", "()Ljava/util/Set;", "")]' in the contract to '[RegisterAttribute("getFeatures", "()Ljava/util/Set;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetByteBuffer(System.String, Java.Nio.ByteBuffer)' changed from '[RegisterAttribute("getByteBuffer", "(Ljava/lang/String;Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;", "")]' in the contract to '[RegisterAttribute("getByteBuffer", "(Ljava/lang/String;Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetFloat(System.String, System.Single)' changed from '[RegisterAttribute("getFloat", "(Ljava/lang/String;F)F", "")]' in the contract to '[RegisterAttribute("getFloat", "(Ljava/lang/String;F)F", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetInteger(System.String, System.Int32)' changed from '[RegisterAttribute("getInteger", "(Ljava/lang/String;I)I", "")]' in the contract to '[RegisterAttribute("getInteger", "(Ljava/lang/String;I)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetLong(System.String, System.Int64)' changed from '[RegisterAttribute("getLong", "(Ljava/lang/String;J)J", "")]' in the contract to '[RegisterAttribute("getLong", "(Ljava/lang/String;J)J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetNumber(System.String)' changed from '[RegisterAttribute("getNumber", "(Ljava/lang/String;)Ljava/lang/Number;", "")]' in the contract to '[RegisterAttribute("getNumber", "(Ljava/lang/String;)Ljava/lang/Number;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetNumber(System.String, Java.Lang.Number)' changed from '[RegisterAttribute("getNumber", "(Ljava/lang/String;Ljava/lang/Number;)Ljava/lang/Number;", "")]' in the contract to '[RegisterAttribute("getNumber", "(Ljava/lang/String;Ljava/lang/Number;)Ljava/lang/Number;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetString(System.String, System.String)' changed from '[RegisterAttribute("getString", "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getString", "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.GetValueTypeForKey(System.String)' changed from '[RegisterAttribute("getValueTypeForKey", "(Ljava/lang/String;)I", "")]' in the contract to '[RegisterAttribute("getValueTypeForKey", "(Ljava/lang/String;)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.Keys.get()' changed from '[RegisterAttribute("getKeys", "()Ljava/util/Set;", "")]' in the contract to '[RegisterAttribute("getKeys", "()Ljava/util/Set;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.RemoveFeature(System.String)' changed from '[RegisterAttribute("removeFeature", "(Ljava/lang/String;)V", "")]' in the contract to '[RegisterAttribute("removeFeature", "(Ljava/lang/String;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaFormat.RemoveKey(System.String)' changed from '[RegisterAttribute("removeKey", "(Ljava/lang/String;)V", "")]' in the contract to '[RegisterAttribute("removeKey", "(Ljava/lang/String;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MetadataKey Android.Media.MediaMetadataRetriever.MetadataKeyExifLength' changed from '[RegisterAttribute("METADATA_KEY_EXIF_LENGTH")]' in the contract to '[RegisterAttribute("METADATA_KEY_EXIF_LENGTH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MetadataKey Android.Media.MediaMetadataRetriever.MetadataKeyExifOffset' changed from '[RegisterAttribute("METADATA_KEY_EXIF_OFFSET")]' in the contract to '[RegisterAttribute("METADATA_KEY_EXIF_OFFSET", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MuxerOutputType Android.Media.MediaMuxer.OutputFormat.MuxerOutputOgg' changed from '[RegisterAttribute("MUXER_OUTPUT_OGG")]' in the contract to '[RegisterAttribute("MUXER_OUTPUT_OGG", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaSession2' changed from '[RegisterAttribute("android/media/MediaSession2", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaSession2", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaSession2.Builder' changed from '[RegisterAttribute("android/media/MediaSession2$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaSession2$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaSession2.ControllerInfo' changed from '[RegisterAttribute("android/media/MediaSession2$ControllerInfo", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaSession2$ControllerInfo", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaSession2.SessionCallback' changed from '[RegisterAttribute("android/media/MediaSession2$SessionCallback", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaSession2$SessionCallback", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaSession2Service' changed from '[RegisterAttribute("android/media/MediaSession2Service", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaSession2Service", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaSession2Service.MediaNotification' changed from '[RegisterAttribute("android/media/MediaSession2Service$MediaNotification", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MediaSession2Service$MediaNotification", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaTimestamp..ctor(System.Int64, System.Int64, System.Single)' changed from '[RegisterAttribute(".ctor", "(JJF)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(JJF)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MediaTimestamp.AnchorSystemNanoTime.get()' changed from '[RegisterAttribute("getAnchorSystemNanoTime", "()J", "")]' in the contract to '[RegisterAttribute("getAnchorSystemNanoTime", "()J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MicrophoneDirection' changed from '[RegisterAttribute("android/media/MicrophoneDirection", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MicrophoneDirection", ApiSince=29, DoNotGenerateAcw=true)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.MicrophoneDirectionConsts' changed from '[RegisterAttribute("android/media/MicrophoneDirection", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/MicrophoneDirection", ApiSince=29, DoNotGenerateAcw=true)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.RingtoneManager.HasHapticChannels(Android.Net.Uri)' changed from '[RegisterAttribute("hasHapticChannels", "(Landroid/net/Uri;)Z", "")]' in the contract to '[RegisterAttribute("hasHapticChannels", "(Landroid/net/Uri;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.RingtoneManager.HasHapticChannels(System.Int32)' changed from '[RegisterAttribute("hasHapticChannels", "(I)Z", "GetHasHapticChannels_IHandler")]' in the contract to '[RegisterAttribute("hasHapticChannels", "(I)Z", "GetHasHapticChannels_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.RingtoneManager.OpenDefaultRingtoneUri(Android.Content.Context, Android.Net.Uri)' changed from '[RegisterAttribute("openDefaultRingtoneUri", "(Landroid/content/Context;Landroid/net/Uri;)Landroid/content/res/AssetFileDescriptor;", "")]' in the contract to '[RegisterAttribute("openDefaultRingtoneUri", "(Landroid/content/Context;Landroid/net/Uri;)Landroid/content/res/AssetFileDescriptor;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session2Command' changed from '[RegisterAttribute("android/media/Session2Command", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/Session2Command", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session2Command.Result' changed from '[RegisterAttribute("android/media/Session2Command$Result", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/Session2Command$Result", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session2CommandGroup' changed from '[RegisterAttribute("android/media/Session2CommandGroup", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/Session2CommandGroup", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session2CommandGroup.Builder' changed from '[RegisterAttribute("android/media/Session2CommandGroup$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/Session2CommandGroup$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session2Token' changed from '[RegisterAttribute("android/media/Session2Token", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/media/Session2Token", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.SubtitleData..ctor(System.Int32, System.Int64, System.Int64, System.Byte[])' changed from '[RegisterAttribute(".ctor", "(IJJ[B)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(IJJ[B)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ThumbnailUtils.CreateAudioThumbnail(Java.IO.File, Android.Util.Size, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("createAudioThumbnail", "(Ljava/io/File;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "")]' in the contract to '[RegisterAttribute("createAudioThumbnail", "(Ljava/io/File;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ThumbnailUtils.CreateAudioThumbnail(System.String, Android.Provider.ThumbnailKind)' changed from '[RegisterAttribute("createAudioThumbnail", "(Ljava/lang/String;I)Landroid/graphics/Bitmap;", "")]' in the contract to '[RegisterAttribute("createAudioThumbnail", "(Ljava/lang/String;I)Landroid/graphics/Bitmap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ThumbnailUtils.CreateImageThumbnail(Java.IO.File, Android.Util.Size, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("createImageThumbnail", "(Ljava/io/File;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "")]' in the contract to '[RegisterAttribute("createImageThumbnail", "(Ljava/io/File;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ThumbnailUtils.CreateImageThumbnail(System.String, Android.Provider.ThumbnailKind)' changed from '[RegisterAttribute("createImageThumbnail", "(Ljava/lang/String;I)Landroid/graphics/Bitmap;", "")]' in the contract to '[RegisterAttribute("createImageThumbnail", "(Ljava/lang/String;I)Landroid/graphics/Bitmap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.ThumbnailUtils.CreateVideoThumbnail(Java.IO.File, Android.Util.Size, Android.OS.CancellationSignal)' changed from '[RegisterAttribute("createVideoThumbnail", "(Ljava/io/File;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "")]' in the contract to '[RegisterAttribute("createVideoThumbnail", "(Ljava/io/File;Landroid/util/Size;Landroid/os/CancellationSignal;)Landroid/graphics/Bitmap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.TimedMetaData..ctor(System.Int64, System.Byte[])' changed from '[RegisterAttribute(".ctor", "(J[B)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(J[B)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaController.SessionInfo.get()' changed from '[RegisterAttribute("getSessionInfo", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getSessionInfo", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaController.PlaybackInfo.Creator' changed from '[RegisterAttribute("CREATOR")]' in the contract to '[RegisterAttribute("CREATOR", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaController.TransportControls.SetPlaybackSpeed(System.Single)' changed from '[RegisterAttribute("setPlaybackSpeed", "(F)V", "")]' in the contract to '[RegisterAttribute("setPlaybackSpeed", "(F)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSession..ctor(Android.Content.Context, System.String, Android.OS.Bundle)' changed from '[RegisterAttribute(".ctor", "(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSession.Callback.OnSetPlaybackSpeed(System.Single)' changed from '[RegisterAttribute("onSetPlaybackSpeed", "(F)V", "GetOnSetPlaybackSpeed_FHandler")]' in the contract to '[RegisterAttribute("onSetPlaybackSpeed", "(F)V", "GetOnSetPlaybackSpeed_FHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSessionManager.AddOnSession2TokensChangedListener(Android.Media.Session.MediaSessionManager.IOnSession2TokensChangedListener)' changed from '[RegisterAttribute("addOnSession2TokensChangedListener", "(Landroid/media/session/MediaSessionManager$OnSession2TokensChangedListener;)V", "")]' in the contract to '[RegisterAttribute("addOnSession2TokensChangedListener", "(Landroid/media/session/MediaSessionManager$OnSession2TokensChangedListener;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSessionManager.AddOnSession2TokensChangedListener(Android.Media.Session.MediaSessionManager.IOnSession2TokensChangedListener, Android.OS.Handler)' changed from '[RegisterAttribute("addOnSession2TokensChangedListener", "(Landroid/media/session/MediaSessionManager$OnSession2TokensChangedListener;Landroid/os/Handler;)V", "")]' in the contract to '[RegisterAttribute("addOnSession2TokensChangedListener", "(Landroid/media/session/MediaSessionManager$OnSession2TokensChangedListener;Landroid/os/Handler;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSessionManager.NotifySession2Created(Android.Media.Session2Token)' changed from '[RegisterAttribute("notifySession2Created", "(Landroid/media/Session2Token;)V", "")]' in the contract to '[RegisterAttribute("notifySession2Created", "(Landroid/media/Session2Token;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSessionManager.RemoveOnSession2TokensChangedListener(Android.Media.Session.MediaSessionManager.IOnSession2TokensChangedListener)' changed from '[RegisterAttribute("removeOnSession2TokensChangedListener", "(Landroid/media/session/MediaSessionManager$OnSession2TokensChangedListener;)V", "")]' in the contract to '[RegisterAttribute("removeOnSession2TokensChangedListener", "(Landroid/media/session/MediaSessionManager$OnSession2TokensChangedListener;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSessionManager.Session2Tokens.get()' changed from '[RegisterAttribute("getSession2Tokens", "()Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("getSession2Tokens", "()Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Media.Session.MediaSessionManager.IOnSession2TokensChangedListener' changed from '[RegisterAttribute("android/media/session/MediaSessionManager$OnSession2TokensChangedListener", "", "Android.Media.Session.MediaSessionManager/IOnSession2TokensChangedListenerInvoker")]' in the contract to '[RegisterAttribute("android/media/session/MediaSessionManager$OnSession2TokensChangedListener", "", "Android.Media.Session.MediaSessionManager/IOnSession2TokensChangedListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.TV.TvContract.Channels.TypeIsdbS3' changed from '[RegisterAttribute("TYPE_ISDB_S3")]' in the contract to '[RegisterAttribute("TYPE_ISDB_S3", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.TV.TvContract.PreviewPrograms.ColumnSeriesId' changed from '[RegisterAttribute("COLUMN_SERIES_ID")]' in the contract to '[RegisterAttribute("COLUMN_SERIES_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.TV.TvContract.Programs.ColumnSeriesId' changed from '[RegisterAttribute("COLUMN_SERIES_ID")]' in the contract to '[RegisterAttribute("COLUMN_SERIES_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.TV.TvContract.RecordedPrograms.ColumnSeriesId' changed from '[RegisterAttribute("COLUMN_SERIES_ID")]' in the contract to '[RegisterAttribute("COLUMN_SERIES_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Media.TV.TvContract.WatchNextPrograms.ColumnSeriesId' changed from '[RegisterAttribute("COLUMN_SERIES_ID")]' in the contract to '[RegisterAttribute("COLUMN_SERIES_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.NetworkSpecifier..ctor()' changed from '[RegisterAttribute(".ctor", "()V", "")]' in the contract to '[RegisterAttribute(".ctor", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiConfiguration.AllowedGroupManagementCiphers' changed from '[RegisterAttribute("allowedGroupManagementCiphers")]' in the contract to '[RegisterAttribute("allowedGroupManagementCiphers", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiConfiguration.AllowedSuiteBCiphers' changed from '[RegisterAttribute("allowedSuiteBCiphers")]' in the contract to '[RegisterAttribute("allowedSuiteBCiphers", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiConfiguration.RandomizedMacAddress.get()' changed from '[RegisterAttribute("getRandomizedMacAddress", "()Landroid/net/MacAddress;", "GetGetRandomizedMacAddressHandler")]' in the contract to '[RegisterAttribute("getRandomizedMacAddress", "()Landroid/net/MacAddress;", "GetGetRandomizedMacAddressHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.GroupCipherType Android.Net.Wifi.WifiConfiguration.GroupCipher.Gcmp256' changed from '[RegisterAttribute("GCMP_256")]' in the contract to '[RegisterAttribute("GCMP_256", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiConfiguration.GroupMgmtCipher' changed from '[RegisterAttribute("android/net/wifi/WifiConfiguration$GroupMgmtCipher", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/WifiConfiguration$GroupMgmtCipher", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.KeyManagementType Android.Net.Wifi.WifiConfiguration.KeyMgmt.Owe' changed from '[RegisterAttribute("OWE")]' in the contract to '[RegisterAttribute("OWE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.KeyManagementType Android.Net.Wifi.WifiConfiguration.KeyMgmt.Sae' changed from '[RegisterAttribute("SAE")]' in the contract to '[RegisterAttribute("SAE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.KeyManagementType Android.Net.Wifi.WifiConfiguration.KeyMgmt.SuiteB192' changed from '[RegisterAttribute("SUITE_B_192")]' in the contract to '[RegisterAttribute("SUITE_B_192", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.PairwiseCipherType Android.Net.Wifi.WifiConfiguration.PairwiseCipher.Gcmp256' changed from '[RegisterAttribute("GCMP_256")]' in the contract to '[RegisterAttribute("GCMP_256", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Net.Wifi.WifiInfo.LinkSpeedUnknown' changed from '[RegisterAttribute("LINK_SPEED_UNKNOWN")]' in the contract to '[RegisterAttribute("LINK_SPEED_UNKNOWN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiInfo.PasspointFqdn.get()' changed from '[RegisterAttribute("getPasspointFqdn", "()Ljava/lang/String;", "GetGetPasspointFqdnHandler")]' in the contract to '[RegisterAttribute("getPasspointFqdn", "()Ljava/lang/String;", "GetGetPasspointFqdnHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiInfo.PasspointProviderFriendlyName.get()' changed from '[RegisterAttribute("getPasspointProviderFriendlyName", "()Ljava/lang/String;", "GetGetPasspointProviderFriendlyNameHandler")]' in the contract to '[RegisterAttribute("getPasspointProviderFriendlyName", "()Ljava/lang/String;", "GetGetPasspointProviderFriendlyNameHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiInfo.RxLinkSpeedMbps.get()' changed from '[RegisterAttribute("getRxLinkSpeedMbps", "()I", "GetGetRxLinkSpeedMbpsHandler")]' in the contract to '[RegisterAttribute("getRxLinkSpeedMbps", "()I", "GetGetRxLinkSpeedMbpsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiInfo.TxLinkSpeedMbps.get()' changed from '[RegisterAttribute("getTxLinkSpeedMbps", "()I", "GetGetTxLinkSpeedMbpsHandler")]' in the contract to '[RegisterAttribute("getTxLinkSpeedMbps", "()I", "GetGetTxLinkSpeedMbpsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.NetworkStatus Android.Net.Wifi.WifiManager.StatusNetworkSuggestionsErrorAddDuplicate' changed from '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATE")]' in the contract to '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.NetworkStatus Android.Net.Wifi.WifiManager.StatusNetworkSuggestionsErrorAddExceedsMaxPerApp' changed from '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APP")]' in the contract to '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APP", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.NetworkStatus Android.Net.Wifi.WifiManager.StatusNetworkSuggestionsErrorAppDisallowed' changed from '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWED")]' in the contract to '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.NetworkStatus Android.Net.Wifi.WifiManager.StatusNetworkSuggestionsErrorInternal' changed from '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL")]' in the contract to '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.NetworkStatus Android.Net.Wifi.WifiManager.StatusNetworkSuggestionsErrorRemoveInvalid' changed from '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID")]' in the contract to '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.NetworkStatus Android.Net.Wifi.WifiManager.StatusNetworkSuggestionsSuccess' changed from '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_SUCCESS")]' in the contract to '[RegisterAttribute("STATUS_NETWORK_SUGGESTIONS_SUCCESS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Net.Wifi.WifiManager.ActionWifiNetworkSuggestionPostConnection' changed from '[RegisterAttribute("ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTION")]' in the contract to '[RegisterAttribute("ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Net.Wifi.WifiManager.ExtraNetworkSuggestion' changed from '[RegisterAttribute("EXTRA_NETWORK_SUGGESTION")]' in the contract to '[RegisterAttribute("EXTRA_NETWORK_SUGGESTION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiManager.AddNetworkSuggestions(System.Collections.Generic.IList)' changed from '[RegisterAttribute("addNetworkSuggestions", "(Ljava/util/List;)I", "GetAddNetworkSuggestions_Ljava_util_List_Handler")]' in the contract to '[RegisterAttribute("addNetworkSuggestions", "(Ljava/util/List;)I", "GetAddNetworkSuggestions_Ljava_util_List_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiManager.IsEasyConnectSupported.get()' changed from '[RegisterAttribute("isEasyConnectSupported", "()Z", "GetIsEasyConnectSupportedHandler")]' in the contract to '[RegisterAttribute("isEasyConnectSupported", "()Z", "GetIsEasyConnectSupportedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiManager.IsEnhancedOpenSupported.get()' changed from '[RegisterAttribute("isEnhancedOpenSupported", "()Z", "GetIsEnhancedOpenSupportedHandler")]' in the contract to '[RegisterAttribute("isEnhancedOpenSupported", "()Z", "GetIsEnhancedOpenSupportedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiManager.IsWpa3SaeSupported.get()' changed from '[RegisterAttribute("isWpa3SaeSupported", "()Z", "GetIsWpa3SaeSupportedHandler")]' in the contract to '[RegisterAttribute("isWpa3SaeSupported", "()Z", "GetIsWpa3SaeSupportedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiManager.IsWpa3SuiteBSupported.get()' changed from '[RegisterAttribute("isWpa3SuiteBSupported", "()Z", "GetIsWpa3SuiteBSupportedHandler")]' in the contract to '[RegisterAttribute("isWpa3SuiteBSupported", "()Z", "GetIsWpa3SuiteBSupportedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiManager.MaxNumberOfNetworkSuggestionsPerApp.get()' changed from '[RegisterAttribute("getMaxNumberOfNetworkSuggestionsPerApp", "()I", "GetGetMaxNumberOfNetworkSuggestionsPerAppHandler")]' in the contract to '[RegisterAttribute("getMaxNumberOfNetworkSuggestionsPerApp", "()I", "GetGetMaxNumberOfNetworkSuggestionsPerAppHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiManager.RemoveNetworkSuggestions(System.Collections.Generic.IList)' changed from '[RegisterAttribute("removeNetworkSuggestions", "(Ljava/util/List;)I", "GetRemoveNetworkSuggestions_Ljava_util_List_Handler")]' in the contract to '[RegisterAttribute("removeNetworkSuggestions", "(Ljava/util/List;)I", "GetRemoveNetworkSuggestions_Ljava_util_List_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiNetworkSpecifier' changed from '[RegisterAttribute("android/net/wifi/WifiNetworkSpecifier", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/WifiNetworkSpecifier", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiNetworkSpecifier.Builder' changed from '[RegisterAttribute("android/net/wifi/WifiNetworkSpecifier$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/WifiNetworkSpecifier$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiNetworkSuggestion' changed from '[RegisterAttribute("android/net/wifi/WifiNetworkSuggestion", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/WifiNetworkSuggestion", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.WifiNetworkSuggestion.Builder' changed from '[RegisterAttribute("android/net/wifi/WifiNetworkSuggestion$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/WifiNetworkSuggestion$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.Aware.ParcelablePeerHandle' changed from '[RegisterAttribute("android/net/wifi/aware/ParcelablePeerHandle", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/aware/ParcelablePeerHandle", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.Aware.WifiAwareNetworkInfo' changed from '[RegisterAttribute("android/net/wifi/aware/WifiAwareNetworkInfo", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/aware/WifiAwareNetworkInfo", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.Aware.WifiAwareNetworkSpecifier' changed from '[RegisterAttribute("android/net/wifi/aware/WifiAwareNetworkSpecifier", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/aware/WifiAwareNetworkSpecifier", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.Aware.WifiAwareNetworkSpecifier.Builder' changed from '[RegisterAttribute("android/net/wifi/aware/WifiAwareNetworkSpecifier$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/aware/WifiAwareNetworkSpecifier$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.Frequency Android.Net.Wifi.P2p.WifiP2pConfig.GroupOwnerBand2ghz' changed from '[RegisterAttribute("GROUP_OWNER_BAND_2GHZ")]' in the contract to '[RegisterAttribute("GROUP_OWNER_BAND_2GHZ", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.Frequency Android.Net.Wifi.P2p.WifiP2pConfig.GroupOwnerBand5ghz' changed from '[RegisterAttribute("GROUP_OWNER_BAND_5GHZ")]' in the contract to '[RegisterAttribute("GROUP_OWNER_BAND_5GHZ", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.Frequency Android.Net.Wifi.P2p.WifiP2pConfig.GroupOwnerBandAuto' changed from '[RegisterAttribute("GROUP_OWNER_BAND_AUTO")]' in the contract to '[RegisterAttribute("GROUP_OWNER_BAND_AUTO", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pConfig.Builder' changed from '[RegisterAttribute("android/net/wifi/p2p/WifiP2pConfig$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/p2p/WifiP2pConfig$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pGroup.Frequency.get()' changed from '[RegisterAttribute("getFrequency", "()I", "GetGetFrequencyHandler")]' in the contract to '[RegisterAttribute("getFrequency", "()I", "GetGetFrequencyHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.CreateGroup(Android.Net.Wifi.P2p.WifiP2pManager.Channel, Android.Net.Wifi.P2p.WifiP2pConfig, Android.Net.Wifi.P2p.WifiP2pManager.IActionListener)' changed from '[RegisterAttribute("createGroup", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pConfig;Landroid/net/wifi/p2p/WifiP2pManager$ActionListener;)V", "GetCreateGroup_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pConfig_Landroid_net_wifi_p2p_WifiP2pManager_ActionListener_Handler")]' in the contract to '[RegisterAttribute("createGroup", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pConfig;Landroid/net/wifi/p2p/WifiP2pManager$ActionListener;)V", "GetCreateGroup_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pConfig_Landroid_net_wifi_p2p_WifiP2pManager_ActionListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.RequestDeviceInfo(Android.Net.Wifi.P2p.WifiP2pManager.Channel, Android.Net.Wifi.P2p.WifiP2pManager.IDeviceInfoListener)' changed from '[RegisterAttribute("requestDeviceInfo", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$DeviceInfoListener;)V", "GetRequestDeviceInfo_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_DeviceInfoListener_Handler")]' in the contract to '[RegisterAttribute("requestDeviceInfo", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$DeviceInfoListener;)V", "GetRequestDeviceInfo_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_DeviceInfoListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.RequestDiscoveryState(Android.Net.Wifi.P2p.WifiP2pManager.Channel, Android.Net.Wifi.P2p.WifiP2pManager.IDiscoveryStateListener)' changed from '[RegisterAttribute("requestDiscoveryState", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$DiscoveryStateListener;)V", "GetRequestDiscoveryState_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_DiscoveryStateListener_Handler")]' in the contract to '[RegisterAttribute("requestDiscoveryState", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$DiscoveryStateListener;)V", "GetRequestDiscoveryState_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_DiscoveryStateListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.RequestNetworkInfo(Android.Net.Wifi.P2p.WifiP2pManager.Channel, Android.Net.Wifi.P2p.WifiP2pManager.INetworkInfoListener)' changed from '[RegisterAttribute("requestNetworkInfo", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$NetworkInfoListener;)V", "GetRequestNetworkInfo_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_NetworkInfoListener_Handler")]' in the contract to '[RegisterAttribute("requestNetworkInfo", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$NetworkInfoListener;)V", "GetRequestNetworkInfo_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_NetworkInfoListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.RequestP2pState(Android.Net.Wifi.P2p.WifiP2pManager.Channel, Android.Net.Wifi.P2p.WifiP2pManager.IP2pStateListener)' changed from '[RegisterAttribute("requestP2pState", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$P2pStateListener;)V", "GetRequestP2pState_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_P2pStateListener_Handler")]' in the contract to '[RegisterAttribute("requestP2pState", "(Landroid/net/wifi/p2p/WifiP2pManager$Channel;Landroid/net/wifi/p2p/WifiP2pManager$P2pStateListener;)V", "GetRequestP2pState_Landroid_net_wifi_p2p_WifiP2pManager_Channel_Landroid_net_wifi_p2p_WifiP2pManager_P2pStateListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.IDeviceInfoListener' changed from '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$DeviceInfoListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/IDeviceInfoListenerInvoker")]' in the contract to '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$DeviceInfoListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/IDeviceInfoListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.IDiscoveryStateListener' changed from '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$DiscoveryStateListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/IDiscoveryStateListenerInvoker")]' in the contract to '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$DiscoveryStateListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/IDiscoveryStateListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.INetworkInfoListener' changed from '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$NetworkInfoListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/INetworkInfoListenerInvoker")]' in the contract to '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$NetworkInfoListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/INetworkInfoListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.P2p.WifiP2pManager.IP2pStateListener' changed from '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$P2pStateListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/IP2pStateListenerInvoker")]' in the contract to '[RegisterAttribute("android/net/wifi/p2p/WifiP2pManager$P2pStateListener", "", "Android.Net.Wifi.P2p.WifiP2pManager/IP2pStateListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.Rtt.CivicLocationKeys' changed from '[RegisterAttribute("android/net/wifi/rtt/CivicLocationKeys", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/rtt/CivicLocationKeys", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.Rtt.RangingResult.UnverifiedResponderLocation.get()' changed from '[RegisterAttribute("getUnverifiedResponderLocation", "()Landroid/net/wifi/rtt/ResponderLocation;", "")]' in the contract to '[RegisterAttribute("getUnverifiedResponderLocation", "()Landroid/net/wifi/rtt/ResponderLocation;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Net.Wifi.Rtt.ResponderLocation' changed from '[RegisterAttribute("android/net/wifi/rtt/ResponderLocation", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/net/wifi/rtt/ResponderLocation", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Nfc.NfcAdapter.IsSecureNfcEnabled.get()' changed from '[RegisterAttribute("isSecureNfcEnabled", "()Z", "")]' in the contract to '[RegisterAttribute("isSecureNfcEnabled", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Nfc.NfcAdapter.IsSecureNfcSupported.get()' changed from '[RegisterAttribute("isSecureNfcSupported", "()Z", "")]' in the contract to '[RegisterAttribute("isSecureNfcSupported", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Opengl.EGL15' changed from '[RegisterAttribute("android/opengl/EGL15", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/opengl/EGL15", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Opengl.EGLImage' changed from '[RegisterAttribute("android/opengl/EGLImage", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/opengl/EGLImage", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Opengl.EGLSync' changed from '[RegisterAttribute("android/opengl/EGLSync", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/opengl/EGLSync", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Binder..ctor(System.String)' changed from '[RegisterAttribute(".ctor", "(Ljava/lang/String;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/lang/String;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Binder.CallingUidOrThrow.get()' changed from '[RegisterAttribute("getCallingUidOrThrow", "()I", "")]' in the contract to '[RegisterAttribute("getCallingUidOrThrow", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Binder.CallingWorkSourceUid.get()' changed from '[RegisterAttribute("getCallingWorkSourceUid", "()I", "")]' in the contract to '[RegisterAttribute("getCallingWorkSourceUid", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Binder.ClearCallingWorkSource()' changed from '[RegisterAttribute("clearCallingWorkSource", "()J", "")]' in the contract to '[RegisterAttribute("clearCallingWorkSource", "()J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Binder.RestoreCallingWorkSource(System.Int64)' changed from '[RegisterAttribute("restoreCallingWorkSource", "(J)V", "")]' in the contract to '[RegisterAttribute("restoreCallingWorkSource", "(J)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Binder.SetCallingWorkSourceUid(System.Int32)' changed from '[RegisterAttribute("setCallingWorkSourceUid", "(I)J", "")]' in the contract to '[RegisterAttribute("setCallingWorkSourceUid", "(I)J", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Build.FingerprintedPartitions.get()' changed from '[RegisterAttribute("getFingerprintedPartitions", "()Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("getFingerprintedPartitions", "()Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Build.Partition' changed from '[RegisterAttribute("android/os/Build$Partition", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/os/Build$Partition", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.OS.DropBoxManager.ExtraDroppedCount' changed from '[RegisterAttribute("EXTRA_DROPPED_COUNT")]' in the contract to '[RegisterAttribute("EXTRA_DROPPED_COUNT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Environment.DirectoryAudiobooks' changed from '[RegisterAttribute("DIRECTORY_AUDIOBOOKS")]' in the contract to '[RegisterAttribute("DIRECTORY_AUDIOBOOKS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Environment.DirectoryScreenshots' changed from '[RegisterAttribute("DIRECTORY_SCREENSHOTS")]' in the contract to '[RegisterAttribute("DIRECTORY_SCREENSHOTS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Environment.InvokeIsExternalStorageLegacy(Java.IO.File)' changed from '[RegisterAttribute("isExternalStorageLegacy", "(Ljava/io/File;)Z", "")]' in the contract to '[RegisterAttribute("isExternalStorageLegacy", "(Ljava/io/File;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Environment.IsExternalStorageLegacy.get()' changed from '[RegisterAttribute("isExternalStorageLegacy", "()Z", "")]' in the contract to '[RegisterAttribute("isExternalStorageLegacy", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.FileObserver..ctor(Java.IO.File)' changed from '[RegisterAttribute(".ctor", "(Ljava/io/File;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/io/File;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.FileObserver..ctor(Java.IO.File, Android.OS.FileObserverEvents)' changed from '[RegisterAttribute(".ctor", "(Ljava/io/File;I)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/io/File;I)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.FileObserver..ctor(System.Collections.Generic.IList)' changed from '[RegisterAttribute(".ctor", "(Ljava/util/List;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/util/List;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.FileObserver..ctor(System.Collections.Generic.IList, Android.OS.FileObserverEvents)' changed from '[RegisterAttribute(".ctor", "(Ljava/util/List;I)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/util/List;I)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.FileUtils' changed from '[RegisterAttribute("android/os/FileUtils", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/os/FileUtils", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.FileUtils.IProgressListener' changed from '[RegisterAttribute("android/os/FileUtils$ProgressListener", "", "Android.OS.FileUtils/IProgressListenerInvoker")]' in the contract to '[RegisterAttribute("android/os/FileUtils$ProgressListener", "", "Android.OS.FileUtils/IProgressListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Handler.HasCallbacks(Java.Lang.IRunnable)' changed from '[RegisterAttribute("hasCallbacks", "(Ljava/lang/Runnable;)Z", "")]' in the contract to '[RegisterAttribute("hasCallbacks", "(Ljava/lang/Runnable;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.LocaleList.IsPseudoLocale(Android.Icu.Util.ULocale)' changed from '[RegisterAttribute("isPseudoLocale", "(Landroid/icu/util/ULocale;)Z", "")]' in the contract to '[RegisterAttribute("isPseudoLocale", "(Landroid/icu/util/ULocale;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.CreateTypedArrayMap(Android.OS.IParcelableCreator)' changed from '[RegisterAttribute("createTypedArrayMap", "(Landroid/os/Parcelable$Creator;)Landroid/util/ArrayMap;", "")]' in the contract to '[RegisterAttribute("createTypedArrayMap", "(Landroid/os/Parcelable$Creator;)Landroid/util/ArrayMap;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.CreateTypedSparseArray(Android.OS.IParcelableCreator)' changed from '[RegisterAttribute("createTypedSparseArray", "(Landroid/os/Parcelable$Creator;)Landroid/util/SparseArray;", "")]' in the contract to '[RegisterAttribute("createTypedSparseArray", "(Landroid/os/Parcelable$Creator;)Landroid/util/SparseArray;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.ReadBoolean()' changed from '[RegisterAttribute("readBoolean", "()Z", "")]' in the contract to '[RegisterAttribute("readBoolean", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.ReadParcelableList(System.Collections.IList, Java.Lang.ClassLoader)' changed from '[RegisterAttribute("readParcelableList", "(Ljava/util/List;Ljava/lang/ClassLoader;)Ljava/util/List;", "")]' in the contract to '[RegisterAttribute("readParcelableList", "(Ljava/util/List;Ljava/lang/ClassLoader;)Ljava/util/List;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.WriteBoolean(System.Boolean)' changed from '[RegisterAttribute("writeBoolean", "(Z)V", "")]' in the contract to '[RegisterAttribute("writeBoolean", "(Z)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.WriteParcelableList(System.Collections.IList, System.Int32)' changed from '[RegisterAttribute("writeParcelableList", "(Ljava/util/List;I)V", "")]' in the contract to '[RegisterAttribute("writeParcelableList", "(Ljava/util/List;I)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.WriteTypedArrayMap(Android.Util.ArrayMap, System.Int32)' changed from '[RegisterAttribute("writeTypedArrayMap", "(Landroid/util/ArrayMap;I)V", "")]' in the contract to '[RegisterAttribute("writeTypedArrayMap", "(Landroid/util/ArrayMap;I)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Parcel.WriteTypedSparseArray(Android.Util.SparseArray, System.Int32)' changed from '[RegisterAttribute("writeTypedSparseArray", "(Landroid/util/SparseArray;I)V", "")]' in the contract to '[RegisterAttribute("writeTypedSparseArray", "(Landroid/util/SparseArray;I)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.PowerManager.AddThermalStatusListener(Android.OS.PowerManager.IOnThermalStatusChangedListener)' changed from '[RegisterAttribute("addThermalStatusListener", "(Landroid/os/PowerManager$OnThermalStatusChangedListener;)V", "GetAddThermalStatusListener_Landroid_os_PowerManager_OnThermalStatusChangedListener_Handler")]' in the contract to '[RegisterAttribute("addThermalStatusListener", "(Landroid/os/PowerManager$OnThermalStatusChangedListener;)V", "GetAddThermalStatusListener_Landroid_os_PowerManager_OnThermalStatusChangedListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.PowerManager.AddThermalStatusListener(Java.Util.Concurrent.IExecutor, Android.OS.PowerManager.IOnThermalStatusChangedListener)' changed from '[RegisterAttribute("addThermalStatusListener", "(Ljava/util/concurrent/Executor;Landroid/os/PowerManager$OnThermalStatusChangedListener;)V", "GetAddThermalStatusListener_Ljava_util_concurrent_Executor_Landroid_os_PowerManager_OnThermalStatusChangedListener_Handler")]' in the contract to '[RegisterAttribute("addThermalStatusListener", "(Ljava/util/concurrent/Executor;Landroid/os/PowerManager$OnThermalStatusChangedListener;)V", "GetAddThermalStatusListener_Ljava_util_concurrent_Executor_Landroid_os_PowerManager_OnThermalStatusChangedListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.PowerManager.CurrentThermalStatus.get()' changed from '[RegisterAttribute("getCurrentThermalStatus", "()I", "GetGetCurrentThermalStatusHandler")]' in the contract to '[RegisterAttribute("getCurrentThermalStatus", "()I", "GetGetCurrentThermalStatusHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.PowerManager.RemoveThermalStatusListener(Android.OS.PowerManager.IOnThermalStatusChangedListener)' changed from '[RegisterAttribute("removeThermalStatusListener", "(Landroid/os/PowerManager$OnThermalStatusChangedListener;)V", "GetRemoveThermalStatusListener_Landroid_os_PowerManager_OnThermalStatusChangedListener_Handler")]' in the contract to '[RegisterAttribute("removeThermalStatusListener", "(Landroid/os/PowerManager$OnThermalStatusChangedListener;)V", "GetRemoveThermalStatusListener_Landroid_os_PowerManager_OnThermalStatusChangedListener_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.PowerManager.IOnThermalStatusChangedListener' changed from '[RegisterAttribute("android/os/PowerManager$OnThermalStatusChangedListener", "", "Android.OS.PowerManager/IOnThermalStatusChangedListenerInvoker")]' in the contract to '[RegisterAttribute("android/os/PowerManager$OnThermalStatusChangedListener", "", "Android.OS.PowerManager/IOnThermalStatusChangedListenerInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.StrictMode.VmPolicy.Builder.DetectCredentialProtectedWhileLocked()' changed from '[RegisterAttribute("detectCredentialProtectedWhileLocked", "()Landroid/os/StrictMode$VmPolicy$Builder;", "")]' in the contract to '[RegisterAttribute("detectCredentialProtectedWhileLocked", "()Landroid/os/StrictMode$VmPolicy$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.StrictMode.VmPolicy.Builder.DetectImplicitDirectBoot()' changed from '[RegisterAttribute("detectImplicitDirectBoot", "()Landroid/os/StrictMode$VmPolicy$Builder;", "")]' in the contract to '[RegisterAttribute("detectImplicitDirectBoot", "()Landroid/os/StrictMode$VmPolicy$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Trace.BeginAsyncSection(System.String, System.Int32)' changed from '[RegisterAttribute("beginAsyncSection", "(Ljava/lang/String;I)V", "")]' in the contract to '[RegisterAttribute("beginAsyncSection", "(Ljava/lang/String;I)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Trace.EndAsyncSection(System.String, System.Int32)' changed from '[RegisterAttribute("endAsyncSection", "(Ljava/lang/String;I)V", "")]' in the contract to '[RegisterAttribute("endAsyncSection", "(Ljava/lang/String;I)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Trace.IsEnabled.get()' changed from '[RegisterAttribute("isEnabled", "()Z", "")]' in the contract to '[RegisterAttribute("isEnabled", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Trace.SetCounter(System.String, System.Int64)' changed from '[RegisterAttribute("setCounter", "(Ljava/lang/String;J)V", "")]' in the contract to '[RegisterAttribute("setCounter", "(Ljava/lang/String;J)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.OS.UserManager.DisallowConfigPrivateDns' changed from '[RegisterAttribute("DISALLOW_CONFIG_PRIVATE_DNS")]' in the contract to '[RegisterAttribute("DISALLOW_CONFIG_PRIVATE_DNS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.OS.UserManager.DisallowContentCapture' changed from '[RegisterAttribute("DISALLOW_CONTENT_CAPTURE")]' in the contract to '[RegisterAttribute("DISALLOW_CONTENT_CAPTURE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.OS.UserManager.DisallowContentSuggestions' changed from '[RegisterAttribute("DISALLOW_CONTENT_SUGGESTIONS")]' in the contract to '[RegisterAttribute("DISALLOW_CONTENT_SUGGESTIONS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.OS.UserManager.DisallowInstallUnknownSourcesGlobally' changed from '[RegisterAttribute("DISALLOW_INSTALL_UNKNOWN_SOURCES_GLOBALLY")]' in the contract to '[RegisterAttribute("DISALLOW_INSTALL_UNKNOWN_SOURCES_GLOBALLY", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.OS.VibrationEffect.EffectClick' changed from '[RegisterAttribute("EFFECT_CLICK")]' in the contract to '[RegisterAttribute("EFFECT_CLICK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.OS.VibrationEffect.EffectDoubleClick' changed from '[RegisterAttribute("EFFECT_DOUBLE_CLICK")]' in the contract to '[RegisterAttribute("EFFECT_DOUBLE_CLICK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.OS.VibrationEffect.EffectHeavyClick' changed from '[RegisterAttribute("EFFECT_HEAVY_CLICK")]' in the contract to '[RegisterAttribute("EFFECT_HEAVY_CLICK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.OS.VibrationEffect.EffectTick' changed from '[RegisterAttribute("EFFECT_TICK")]' in the contract to '[RegisterAttribute("EFFECT_TICK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.VibrationEffect.CreatePredefined(System.Int32)' changed from '[RegisterAttribute("createPredefined", "(I)Landroid/os/VibrationEffect;", "")]' in the contract to '[RegisterAttribute("createPredefined", "(I)Landroid/os/VibrationEffect;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Storage.StorageManager.GetStorageVolume(Android.Net.Uri)' changed from '[RegisterAttribute("getStorageVolume", "(Landroid/net/Uri;)Landroid/os/storage/StorageVolume;", "GetGetStorageVolume_Landroid_net_Uri_Handler")]' in the contract to '[RegisterAttribute("getStorageVolume", "(Landroid/net/Uri;)Landroid/os/storage/StorageVolume;", "GetGetStorageVolume_Landroid_net_Uri_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Storage.StorageVolume.CreateOpenDocumentTreeIntent()' changed from '[RegisterAttribute("createOpenDocumentTreeIntent", "()Landroid/content/Intent;", "")]' in the contract to '[RegisterAttribute("createOpenDocumentTreeIntent", "()Landroid/content/Intent;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Strictmode.CredentialProtectedWhileLockedViolation' changed from '[RegisterAttribute("android/os/strictmode/CredentialProtectedWhileLockedViolation", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/os/strictmode/CredentialProtectedWhileLockedViolation", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.OS.Strictmode.ImplicitDirectBootViolation' changed from '[RegisterAttribute("android/os/strictmode/ImplicitDirectBootViolation", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/os/strictmode/ImplicitDirectBootViolation", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.CalendarContract.ActionViewManagedProfileCalendarEvent' changed from '[RegisterAttribute("ACTION_VIEW_MANAGED_PROFILE_CALENDAR_EVENT")]' in the contract to '[RegisterAttribute("ACTION_VIEW_MANAGED_PROFILE_CALENDAR_EVENT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.CalendarContract.ExtraEventId' changed from '[RegisterAttribute("EXTRA_EVENT_ID")]' in the contract to '[RegisterAttribute("EXTRA_EVENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.CalendarContract.StartViewCalendarEventInManagedProfile(Android.Content.Context, System.Int64, System.Int64, System.Int64, System.Boolean, Android.Content.ActivityFlags)' changed from '[RegisterAttribute("startViewCalendarEventInManagedProfile", "(Landroid/content/Context;JJJZI)Z", "")]' in the contract to '[RegisterAttribute("startViewCalendarEventInManagedProfile", "(Landroid/content/Context;JJJZI)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.CalendarContract.Calendars.EnterpriseContentUri' changed from '[RegisterAttribute("ENTERPRISE_CONTENT_URI")]' in the contract to '[RegisterAttribute("ENTERPRISE_CONTENT_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.CalendarContract.Events.EnterpriseContentUri' changed from '[RegisterAttribute("ENTERPRISE_CONTENT_URI")]' in the contract to '[RegisterAttribute("ENTERPRISE_CONTENT_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.CalendarContract.Instances.EnterpriseContentByDayUri' changed from '[RegisterAttribute("ENTERPRISE_CONTENT_BY_DAY_URI")]' in the contract to '[RegisterAttribute("ENTERPRISE_CONTENT_BY_DAY_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.CalendarContract.Instances.EnterpriseContentSearchByDayUri' changed from '[RegisterAttribute("ENTERPRISE_CONTENT_SEARCH_BY_DAY_URI")]' in the contract to '[RegisterAttribute("ENTERPRISE_CONTENT_SEARCH_BY_DAY_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.CalendarContract.Instances.EnterpriseContentSearchUri' changed from '[RegisterAttribute("ENTERPRISE_CONTENT_SEARCH_URI")]' in the contract to '[RegisterAttribute("ENTERPRISE_CONTENT_SEARCH_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.CalendarContract.Instances.EnterpriseContentUri' changed from '[RegisterAttribute("ENTERPRISE_CONTENT_URI")]' in the contract to '[RegisterAttribute("ENTERPRISE_CONTENT_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.MetadataExif' changed from '[RegisterAttribute("METADATA_EXIF")]' in the contract to '[RegisterAttribute("METADATA_EXIF", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.MetadataTreeCount' changed from '[RegisterAttribute("METADATA_TREE_COUNT")]' in the contract to '[RegisterAttribute("METADATA_TREE_COUNT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.MetadataTreeSize' changed from '[RegisterAttribute("METADATA_TREE_SIZE")]' in the contract to '[RegisterAttribute("METADATA_TREE_SIZE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.MetadataTypes' changed from '[RegisterAttribute("METADATA_TYPES")]' in the contract to '[RegisterAttribute("METADATA_TYPES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.QueryArgDisplayName' changed from '[RegisterAttribute("QUERY_ARG_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("QUERY_ARG_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.QueryArgExcludeMedia' changed from '[RegisterAttribute("QUERY_ARG_EXCLUDE_MEDIA")]' in the contract to '[RegisterAttribute("QUERY_ARG_EXCLUDE_MEDIA", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.QueryArgFileSizeOver' changed from '[RegisterAttribute("QUERY_ARG_FILE_SIZE_OVER")]' in the contract to '[RegisterAttribute("QUERY_ARG_FILE_SIZE_OVER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.QueryArgLastModifiedAfter' changed from '[RegisterAttribute("QUERY_ARG_LAST_MODIFIED_AFTER")]' in the contract to '[RegisterAttribute("QUERY_ARG_LAST_MODIFIED_AFTER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.QueryArgMimeTypes' changed from '[RegisterAttribute("QUERY_ARG_MIME_TYPES")]' in the contract to '[RegisterAttribute("QUERY_ARG_MIME_TYPES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentsContract.GetDocumentMetadata(Android.Content.ContentResolver, Android.Net.Uri)' changed from '[RegisterAttribute("getDocumentMetadata", "(Landroid/content/ContentResolver;Landroid/net/Uri;)Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getDocumentMetadata", "(Landroid/content/ContentResolver;Landroid/net/Uri;)Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentsContract.IsChildDocument(Android.Content.ContentResolver, Android.Net.Uri, Android.Net.Uri)' changed from '[RegisterAttribute("isChildDocument", "(Landroid/content/ContentResolver;Landroid/net/Uri;Landroid/net/Uri;)Z", "")]' in the contract to '[RegisterAttribute("isChildDocument", "(Landroid/content/ContentResolver;Landroid/net/Uri;Landroid/net/Uri;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentsContract.IsRootsUri(Android.Content.Context, Android.Net.Uri)' changed from '[RegisterAttribute("isRootsUri", "(Landroid/content/Context;Landroid/net/Uri;)Z", "")]' in the contract to '[RegisterAttribute("isRootsUri", "(Landroid/content/Context;Landroid/net/Uri;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentsContract.IsRootUri(Android.Content.Context, Android.Net.Uri)' changed from '[RegisterAttribute("isRootUri", "(Landroid/content/Context;Landroid/net/Uri;)Z", "")]' in the contract to '[RegisterAttribute("isRootUri", "(Landroid/content/Context;Landroid/net/Uri;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentContractFlags Android.Provider.DocumentsContract.Document.FlagPartial' changed from '[RegisterAttribute("FLAG_PARTIAL")]' in the contract to '[RegisterAttribute("FLAG_PARTIAL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentContractFlags Android.Provider.DocumentsContract.Document.FlagSupportsMetadata' changed from '[RegisterAttribute("FLAG_SUPPORTS_METADATA")]' in the contract to '[RegisterAttribute("FLAG_SUPPORTS_METADATA", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentRootFlags Android.Provider.DocumentsContract.Root.FlagEmpty' changed from '[RegisterAttribute("FLAG_EMPTY")]' in the contract to '[RegisterAttribute("FLAG_EMPTY", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.DocumentsContract.Root.ColumnQueryArgs' changed from '[RegisterAttribute("COLUMN_QUERY_ARGS")]' in the contract to '[RegisterAttribute("COLUMN_QUERY_ARGS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentsProvider.GetDocumentMetadata(System.String)' changed from '[RegisterAttribute("getDocumentMetadata", "(Ljava/lang/String;)Landroid/os/Bundle;", "GetGetDocumentMetadata_Ljava_lang_String_Handler")]' in the contract to '[RegisterAttribute("getDocumentMetadata", "(Ljava/lang/String;)Landroid/os/Bundle;", "GetGetDocumentMetadata_Ljava_lang_String_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.DocumentsProvider.QuerySearchDocuments(System.String, System.String[], Android.OS.Bundle)' changed from '[RegisterAttribute("querySearchDocuments", "(Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;)Landroid/database/Cursor;", "GetQuerySearchDocuments_Ljava_lang_String_arrayLjava_lang_String_Landroid_os_Bundle_Handler")]' in the contract to '[RegisterAttribute("querySearchDocuments", "(Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;)Landroid/database/Cursor;", "GetQuerySearchDocuments_Ljava_lang_String_arrayLjava_lang_String_Landroid_os_Bundle_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.ActionReview' changed from '[RegisterAttribute("ACTION_REVIEW")]' in the contract to '[RegisterAttribute("ACTION_REVIEW", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.ActionReviewSecure' changed from '[RegisterAttribute("ACTION_REVIEW_SECURE")]' in the contract to '[RegisterAttribute("ACTION_REVIEW_SECURE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.ExtraBrightness' changed from '[RegisterAttribute("EXTRA_BRIGHTNESS")]' in the contract to '[RegisterAttribute("EXTRA_BRIGHTNESS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.VolumeExternal' changed from '[RegisterAttribute("VOLUME_EXTERNAL")]' in the contract to '[RegisterAttribute("VOLUME_EXTERNAL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.VolumeExternalPrimary' changed from '[RegisterAttribute("VOLUME_EXTERNAL_PRIMARY")]' in the contract to '[RegisterAttribute("VOLUME_EXTERNAL_PRIMARY", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.VolumeInternal' changed from '[RegisterAttribute("VOLUME_INTERNAL")]' in the contract to '[RegisterAttribute("VOLUME_INTERNAL", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.AuthorityUri' changed from '[RegisterAttribute("AUTHORITY_URI")]' in the contract to '[RegisterAttribute("AUTHORITY_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.GetExternalVolumeNames(Android.Content.Context)' changed from '[RegisterAttribute("getExternalVolumeNames", "(Landroid/content/Context;)Ljava/util/Set;", "")]' in the contract to '[RegisterAttribute("getExternalVolumeNames", "(Landroid/content/Context;)Ljava/util/Set;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.GetMediaUri(Android.Content.Context, Android.Net.Uri)' changed from '[RegisterAttribute("getMediaUri", "(Landroid/content/Context;Landroid/net/Uri;)Landroid/net/Uri;", "")]' in the contract to '[RegisterAttribute("getMediaUri", "(Landroid/content/Context;Landroid/net/Uri;)Landroid/net/Uri;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.GetVersion(Android.Content.Context, System.String)' changed from '[RegisterAttribute("getVersion", "(Landroid/content/Context;Ljava/lang/String;)Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getVersion", "(Landroid/content/Context;Ljava/lang/String;)Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.GetVolumeName(Android.Net.Uri)' changed from '[RegisterAttribute("getVolumeName", "(Landroid/net/Uri;)Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getVolumeName", "(Landroid/net/Uri;)Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.SetIncludePending(Android.Net.Uri)' changed from '[RegisterAttribute("setIncludePending", "(Landroid/net/Uri;)Landroid/net/Uri;", "")]' in the contract to '[RegisterAttribute("setIncludePending", "(Landroid/net/Uri;)Landroid/net/Uri;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.SetRequireOriginal(Android.Net.Uri)' changed from '[RegisterAttribute("setRequireOriginal", "(Landroid/net/Uri;)Landroid/net/Uri;", "")]' in the contract to '[RegisterAttribute("setRequireOriginal", "(Landroid/net/Uri;)Landroid/net/Uri;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AlbumColumns.ArtistId' changed from '[RegisterAttribute("ARTIST_ID")]' in the contract to '[RegisterAttribute("ARTIST_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Albums.InterfaceConsts.ArtistId' changed from '[RegisterAttribute("ARTIST_ID")]' in the contract to '[RegisterAttribute("ARTIST_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Artists.Albums.InterfaceConsts.ArtistId' changed from '[RegisterAttribute("ARTIST_ID")]' in the contract to '[RegisterAttribute("ARTIST_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.IsAudiobook' changed from '[RegisterAttribute("IS_AUDIOBOOK")]' in the contract to '[RegisterAttribute("IS_AUDIOBOOK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.AudioColumns.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.IsAudiobook' changed from '[RegisterAttribute("IS_AUDIOBOOK")]' in the contract to '[RegisterAttribute("IS_AUDIOBOOK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Genres.Members.InterfaceConsts.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.IsAudiobook' changed from '[RegisterAttribute("IS_AUDIOBOOK")]' in the contract to '[RegisterAttribute("IS_AUDIOBOOK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Media.InterfaceConsts.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.IsAudiobook' changed from '[RegisterAttribute("IS_AUDIOBOOK")]' in the contract to '[RegisterAttribute("IS_AUDIOBOOK", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Audio.Playlists.Members.InterfaceConsts.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.DownloadColumns' changed from '[RegisterAttribute("android/provider/MediaStore$DownloadColumns", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/provider/MediaStore$DownloadColumns", ApiSince=29, DoNotGenerateAcw=true)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.Duration' changed from '[RegisterAttribute("DURATION")]' in the contract to '[RegisterAttribute("DURATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.DownloadColumns.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.DownloadColumnsConsts' changed from '[RegisterAttribute("android/provider/MediaStore$DownloadColumns", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/provider/MediaStore$DownloadColumns", ApiSince=29, DoNotGenerateAcw=true)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.MediaStore.Downloads' changed from '[RegisterAttribute("android/provider/MediaStore$Downloads", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/provider/MediaStore$Downloads", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.Duration' changed from '[RegisterAttribute("DURATION")]' in the contract to '[RegisterAttribute("DURATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Downloads.InterfaceConsts.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.Duration' changed from '[RegisterAttribute("DURATION")]' in the contract to '[RegisterAttribute("DURATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Files.FileColumns.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.Duration' changed from '[RegisterAttribute("DURATION")]' in the contract to '[RegisterAttribute("DURATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.ImageColumns.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.Duration' changed from '[RegisterAttribute("DURATION")]' in the contract to '[RegisterAttribute("DURATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Images.Media.InterfaceConsts.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.BucketDisplayName' changed from '[RegisterAttribute("BUCKET_DISPLAY_NAME")]' in the contract to '[RegisterAttribute("BUCKET_DISPLAY_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.BucketId' changed from '[RegisterAttribute("BUCKET_ID")]' in the contract to '[RegisterAttribute("BUCKET_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.DateTaken' changed from '[RegisterAttribute("DATE_TAKEN")]' in the contract to '[RegisterAttribute("DATE_TAKEN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.Duration' changed from '[RegisterAttribute("DURATION")]' in the contract to '[RegisterAttribute("DURATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.MediaColumns.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.Media.InterfaceConsts.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.DateExpires' changed from '[RegisterAttribute("DATE_EXPIRES")]' in the contract to '[RegisterAttribute("DATE_EXPIRES", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.DocumentId' changed from '[RegisterAttribute("DOCUMENT_ID")]' in the contract to '[RegisterAttribute("DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.InstanceId' changed from '[RegisterAttribute("INSTANCE_ID")]' in the contract to '[RegisterAttribute("INSTANCE_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.IsPending' changed from '[RegisterAttribute("IS_PENDING")]' in the contract to '[RegisterAttribute("IS_PENDING", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.Orientation' changed from '[RegisterAttribute("ORIENTATION")]' in the contract to '[RegisterAttribute("ORIENTATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.OriginalDocumentId' changed from '[RegisterAttribute("ORIGINAL_DOCUMENT_ID")]' in the contract to '[RegisterAttribute("ORIGINAL_DOCUMENT_ID", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.OwnerPackageName' changed from '[RegisterAttribute("OWNER_PACKAGE_NAME")]' in the contract to '[RegisterAttribute("OWNER_PACKAGE_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.RelativePath' changed from '[RegisterAttribute("RELATIVE_PATH")]' in the contract to '[RegisterAttribute("RELATIVE_PATH", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.MediaStore.Video.VideoColumns.VolumeName' changed from '[RegisterAttribute("VOLUME_NAME")]' in the contract to '[RegisterAttribute("VOLUME_NAME", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.Settings.ActionAppNotificationBubbleSettings' changed from '[RegisterAttribute("ACTION_APP_NOTIFICATION_BUBBLE_SETTINGS")]' in the contract to '[RegisterAttribute("ACTION_APP_NOTIFICATION_BUBBLE_SETTINGS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.Settings.ActionAppSearchSettings' changed from '[RegisterAttribute("ACTION_APP_SEARCH_SETTINGS")]' in the contract to '[RegisterAttribute("ACTION_APP_SEARCH_SETTINGS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.Settings.ActionAppUsageSettings' changed from '[RegisterAttribute("ACTION_APP_USAGE_SETTINGS")]' in the contract to '[RegisterAttribute("ACTION_APP_USAGE_SETTINGS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.Settings.ActionNotificationAssistantSettings' changed from '[RegisterAttribute("ACTION_NOTIFICATION_ASSISTANT_SETTINGS")]' in the contract to '[RegisterAttribute("ACTION_NOTIFICATION_ASSISTANT_SETTINGS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.Settings.ActionProcessWifiEasyConnectUri' changed from '[RegisterAttribute("ACTION_PROCESS_WIFI_EASY_CONNECT_URI")]' in the contract to '[RegisterAttribute("ACTION_PROCESS_WIFI_EASY_CONNECT_URI", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Provider.Settings.Global.ApplyRampingRinger' changed from '[RegisterAttribute("APPLY_RAMPING_RINGER")]' in the contract to '[RegisterAttribute("APPLY_RAMPING_RINGER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Provider.Settings.Panel' changed from '[RegisterAttribute("android/provider/Settings$Panel", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/provider/Settings$Panel", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.CustomDescription.Builder.AddOnClickAction(System.Int32, Android.Service.Autofill.IOnClickAction)' changed from '[RegisterAttribute("addOnClickAction", "(ILandroid/service/autofill/OnClickAction;)Landroid/service/autofill/CustomDescription$Builder;", "GetAddOnClickAction_ILandroid_service_autofill_OnClickAction_Handler")]' in the contract to '[RegisterAttribute("addOnClickAction", "(ILandroid/service/autofill/OnClickAction;)Landroid/service/autofill/CustomDescription$Builder;", "GetAddOnClickAction_ILandroid_service_autofill_OnClickAction_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.FillContext.FocusedId.get()' changed from '[RegisterAttribute("getFocusedId", "()Landroid/view/autofill/AutofillId;", "")]' in the contract to '[RegisterAttribute("getFocusedId", "()Landroid/view/autofill/AutofillId;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Service.Autofill.FillRequest.FlagCompatibilityModeRequest' changed from '[RegisterAttribute("FLAG_COMPATIBILITY_MODE_REQUEST")]' in the contract to '[RegisterAttribute("FLAG_COMPATIBILITY_MODE_REQUEST", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.FillResponse.Builder.SetUserData(Android.Service.Autofill.UserData)' changed from '[RegisterAttribute("setUserData", "(Landroid/service/autofill/UserData;)Landroid/service/autofill/FillResponse$Builder;", "")]' in the contract to '[RegisterAttribute("setUserData", "(Landroid/service/autofill/UserData;)Landroid/service/autofill/FillResponse$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.IOnClickAction' changed from '[RegisterAttribute("android/service/autofill/OnClickAction", "", "Android.Service.Autofill.IOnClickActionInvoker")]' in the contract to '[RegisterAttribute("android/service/autofill/OnClickAction", "", "Android.Service.Autofill.IOnClickActionInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.UserData.GetFieldClassificationAlgorithmForCategory(System.String)' changed from '[RegisterAttribute("getFieldClassificationAlgorithmForCategory", "(Ljava/lang/String;)Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getFieldClassificationAlgorithmForCategory", "(Ljava/lang/String;)Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.UserData.Builder.SetFieldClassificationAlgorithmForCategory(System.String, System.String, Android.OS.Bundle)' changed from '[RegisterAttribute("setFieldClassificationAlgorithmForCategory", "(Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/service/autofill/UserData$Builder;", "")]' in the contract to '[RegisterAttribute("setFieldClassificationAlgorithmForCategory", "(Ljava/lang/String;Ljava/lang/String;Landroid/os/Bundle;)Landroid/service/autofill/UserData$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.VisibilitySetterAction' changed from '[RegisterAttribute("android/service/autofill/VisibilitySetterAction", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/service/autofill/VisibilitySetterAction", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Autofill.VisibilitySetterAction.Builder' changed from '[RegisterAttribute("android/service/autofill/VisibilitySetterAction$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/service/autofill/VisibilitySetterAction$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Carrier.CarrierMessagingClientService' changed from '[RegisterAttribute("android/service/carrier/CarrierMessagingClientService", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/service/carrier/CarrierMessagingClientService", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.NotificationListenerService.ClearRequestedListenerHints()' changed from '[RegisterAttribute("clearRequestedListenerHints", "()V", "")]' in the contract to '[RegisterAttribute("clearRequestedListenerHints", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.NotificationListenerService.OnSilentStatusBarIconsVisibilityChanged(System.Boolean)' changed from '[RegisterAttribute("onSilentStatusBarIconsVisibilityChanged", "(Z)V", "GetOnSilentStatusBarIconsVisibilityChanged_ZHandler")]' in the contract to '[RegisterAttribute("onSilentStatusBarIconsVisibilityChanged", "(Z)V", "GetOnSilentStatusBarIconsVisibilityChanged_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.NotificationListenerService.Ranking.CanBubble()' changed from '[RegisterAttribute("canBubble", "()Z", "GetCanBubbleHandler")]' in the contract to '[RegisterAttribute("canBubble", "()Z", "GetCanBubbleHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.NotificationListenerService.Ranking.LastAudiblyAlertedMillis.get()' changed from '[RegisterAttribute("getLastAudiblyAlertedMillis", "()J", "GetGetLastAudiblyAlertedMillisHandler")]' in the contract to '[RegisterAttribute("getLastAudiblyAlertedMillis", "()J", "GetGetLastAudiblyAlertedMillisHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.NotificationListenerService.Ranking.SmartActions.get()' changed from '[RegisterAttribute("getSmartActions", "()Ljava/util/List;", "GetGetSmartActionsHandler")]' in the contract to '[RegisterAttribute("getSmartActions", "()Ljava/util/List;", "GetGetSmartActionsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.NotificationListenerService.Ranking.SmartReplies.get()' changed from '[RegisterAttribute("getSmartReplies", "()Ljava/util/List;", "GetGetSmartRepliesHandler")]' in the contract to '[RegisterAttribute("getSmartReplies", "()Ljava/util/List;", "GetGetSmartRepliesHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.StatusBarNotification.OpPkg.get()' changed from '[RegisterAttribute("getOpPkg", "()Ljava/lang/String;", "GetGetOpPkgHandler")]' in the contract to '[RegisterAttribute("getOpPkg", "()Ljava/lang/String;", "GetGetOpPkgHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.StatusBarNotification.Uid.get()' changed from '[RegisterAttribute("getUid", "()I", "GetGetUidHandler")]' in the contract to '[RegisterAttribute("getUid", "()I", "GetGetUidHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.ZenPolicy' changed from '[RegisterAttribute("android/service/notification/ZenPolicy", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/service/notification/ZenPolicy", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Notification.ZenPolicy.Builder' changed from '[RegisterAttribute("android/service/notification/ZenPolicy$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/service/notification/ZenPolicy$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.QuickSettings.Tile.SubtitleFormatted.get()' changed from '[RegisterAttribute("getSubtitle", "()Ljava/lang/CharSequence;", "")]' in the contract to '[RegisterAttribute("getSubtitle", "()Ljava/lang/CharSequence;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.QuickSettings.Tile.SubtitleFormatted.set(Java.Lang.ICharSequence)' changed from '[RegisterAttribute("setSubtitle", "(Ljava/lang/CharSequence;)V", "")]' in the contract to '[RegisterAttribute("setSubtitle", "(Ljava/lang/CharSequence;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionService.OnGetSupportedVoiceActions(System.Collections.Generic.ICollection)' changed from '[RegisterAttribute("onGetSupportedVoiceActions", "(Ljava/util/Set;)Ljava/util/Set;", "GetOnGetSupportedVoiceActions_Ljava_util_Set_Handler")]' in the contract to '[RegisterAttribute("onGetSupportedVoiceActions", "(Ljava/util/Set;)Ljava/util/Set;", "GetOnGetSupportedVoiceActions_Ljava_util_Set_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionService.SetUiHints(Android.OS.Bundle)' changed from '[RegisterAttribute("setUiHints", "(Landroid/os/Bundle;)V", "")]' in the contract to '[RegisterAttribute("setUiHints", "(Landroid/os/Bundle;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionSession.OnDirectActionsInvalidated(Android.Service.Voice.VoiceInteractionSession.ActivityId)' changed from '[RegisterAttribute("onDirectActionsInvalidated", "(Landroid/service/voice/VoiceInteractionSession$ActivityId;)V", "GetOnDirectActionsInvalidated_Landroid_service_voice_VoiceInteractionSession_ActivityId_Handler")]' in the contract to '[RegisterAttribute("onDirectActionsInvalidated", "(Landroid/service/voice/VoiceInteractionSession$ActivityId;)V", "GetOnDirectActionsInvalidated_Landroid_service_voice_VoiceInteractionSession_ActivityId_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionSession.OnHandleAssist(Android.Service.Voice.VoiceInteractionSession.AssistState)' changed from '[RegisterAttribute("onHandleAssist", "(Landroid/service/voice/VoiceInteractionSession$AssistState;)V", "GetOnHandleAssist_Landroid_service_voice_VoiceInteractionSession_AssistState_Handler")]' in the contract to '[RegisterAttribute("onHandleAssist", "(Landroid/service/voice/VoiceInteractionSession$AssistState;)V", "GetOnHandleAssist_Landroid_service_voice_VoiceInteractionSession_AssistState_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionSession.PerformDirectAction(Android.App.DirectAction, Android.OS.Bundle, Android.OS.CancellationSignal, Java.Util.Concurrent.IExecutor, Java.Util.Functions.IConsumer)' changed from '[RegisterAttribute("performDirectAction", "(Landroid/app/DirectAction;Landroid/os/Bundle;Landroid/os/CancellationSignal;Ljava/util/concurrent/Executor;Ljava/util/function/Consumer;)V", "")]' in the contract to '[RegisterAttribute("performDirectAction", "(Landroid/app/DirectAction;Landroid/os/Bundle;Landroid/os/CancellationSignal;Ljava/util/concurrent/Executor;Ljava/util/function/Consumer;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionSession.RequestDirectActions(Android.Service.Voice.VoiceInteractionSession.ActivityId, Android.OS.CancellationSignal, Java.Util.Concurrent.IExecutor, Java.Util.Functions.IConsumer)' changed from '[RegisterAttribute("requestDirectActions", "(Landroid/service/voice/VoiceInteractionSession$ActivityId;Landroid/os/CancellationSignal;Ljava/util/concurrent/Executor;Ljava/util/function/Consumer;)V", "")]' in the contract to '[RegisterAttribute("requestDirectActions", "(Landroid/service/voice/VoiceInteractionSession$ActivityId;Landroid/os/CancellationSignal;Ljava/util/concurrent/Executor;Ljava/util/function/Consumer;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionSession.ActivityId' changed from '[RegisterAttribute("android/service/voice/VoiceInteractionSession$ActivityId", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/service/voice/VoiceInteractionSession$ActivityId", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Voice.VoiceInteractionSession.AssistState' changed from '[RegisterAttribute("android/service/voice/VoiceInteractionSession$AssistState", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/service/voice/VoiceInteractionSession$AssistState", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Service.Wallpaper.WallpaperService.Engine.DisplayContext.get()' changed from '[RegisterAttribute("getDisplayContext", "()Landroid/content/Context;", "GetGetDisplayContextHandler")]' in the contract to '[RegisterAttribute("getDisplayContext", "()Landroid/content/Context;", "GetGetDisplayContextHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Telecom.Call.ExtraSilentRingingRequested' changed from '[RegisterAttribute("EXTRA_SILENT_RINGING_REQUESTED")]' in the contract to '[RegisterAttribute("EXTRA_SILENT_RINGING_REQUESTED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Telecom.CallScreeningService.CallResponse.SilenceCall.get()' changed from '[RegisterAttribute("getSilenceCall", "()Z", "GetGetSilenceCallHandler")]' in the contract to '[RegisterAttribute("getSilenceCall", "()Z", "GetGetSilenceCallHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Telecom.CallScreeningService.CallResponse.Builder.SetSilenceCall(System.Boolean)' changed from '[RegisterAttribute("setSilenceCall", "(Z)Landroid/telecom/CallScreeningService$CallResponse$Builder;", "GetSetSilenceCall_ZHandler")]' in the contract to '[RegisterAttribute("setSilenceCall", "(Z)Landroid/telecom/CallScreeningService$CallResponse$Builder;", "GetSetSilenceCall_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Telephony.SmsManager.CreateAppSpecificSmsTokenWithPackageInfo(System.String, Android.App.PendingIntent)' changed from '[RegisterAttribute("createAppSpecificSmsTokenWithPackageInfo", "(Ljava/lang/String;Landroid/app/PendingIntent;)Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("createAppSpecificSmsTokenWithPackageInfo", "(Ljava/lang/String;Landroid/app/PendingIntent;)Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Telephony.SmsManager.GetSmsMessagesForFinancialApp(Android.OS.Bundle, Java.Util.Concurrent.IExecutor, Android.Telephony.SmsManager.FinancialSmsCallback)' changed from '[RegisterAttribute("getSmsMessagesForFinancialApp", "(Landroid/os/Bundle;Ljava/util/concurrent/Executor;Landroid/telephony/SmsManager$FinancialSmsCallback;)V", "")]' in the contract to '[RegisterAttribute("getSmsMessagesForFinancialApp", "(Landroid/os/Bundle;Ljava/util/concurrent/Executor;Landroid/telephony/SmsManager$FinancialSmsCallback;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Telephony.SmsManager.FinancialSmsCallback' changed from '[RegisterAttribute("android/telephony/SmsManager$FinancialSmsCallback", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/telephony/SmsManager$FinancialSmsCallback", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Telephony.TelephonyManager.ActionCarrierMessagingClientService' changed from '[RegisterAttribute("ACTION_CARRIER_MESSAGING_CLIENT_SERVICE")]' in the contract to '[RegisterAttribute("ACTION_CARRIER_MESSAGING_CLIENT_SERVICE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Telephony.TelephonyManager.DoesSwitchMultiSimConfigTriggerReboot()' changed from '[RegisterAttribute("doesSwitchMultiSimConfigTriggerReboot", "()Z", "GetDoesSwitchMultiSimConfigTriggerRebootHandler")]' in the contract to '[RegisterAttribute("doesSwitchMultiSimConfigTriggerReboot", "()Z", "GetDoesSwitchMultiSimConfigTriggerRebootHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.TextPaint.UnderlineColor' changed from '[RegisterAttribute("underlineColor")]' in the contract to '[RegisterAttribute("underlineColor", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.SafeStringFlagMode Android.Text.TextUtils.SafeStringFlagFirstLine' changed from '[RegisterAttribute("SAFE_STRING_FLAG_FIRST_LINE")]' in the contract to '[RegisterAttribute("SAFE_STRING_FLAG_FIRST_LINE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.SafeStringFlagMode Android.Text.TextUtils.SafeStringFlagSingleLine' changed from '[RegisterAttribute("SAFE_STRING_FLAG_SINGLE_LINE")]' in the contract to '[RegisterAttribute("SAFE_STRING_FLAG_SINGLE_LINE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.SafeStringFlagMode Android.Text.TextUtils.SafeStringFlagTrim' changed from '[RegisterAttribute("SAFE_STRING_FLAG_TRIM")]' in the contract to '[RegisterAttribute("SAFE_STRING_FLAG_TRIM", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.TextUtils.MakeSafeForPresentationFormatted(System.String, System.Int32, System.Single, Android.Text.SafeStringFlagMode)' changed from '[RegisterAttribute("makeSafeForPresentation", "(Ljava/lang/String;IFI)Ljava/lang/CharSequence;", "")]' in the contract to '[RegisterAttribute("makeSafeForPresentation", "(Ljava/lang/String;IFI)Ljava/lang/CharSequence;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.LineBackgroundSpanStandard' changed from '[RegisterAttribute("android/text/style/LineBackgroundSpan$Standard", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/text/style/LineBackgroundSpan$Standard", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.LineHeightSpanStandard' changed from '[RegisterAttribute("android/text/style/LineHeightSpan$Standard", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/text/style/LineHeightSpan$Standard", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.SuggestionSpan.UnderlineColor.get()' changed from '[RegisterAttribute("getUnderlineColor", "()I", "GetGetUnderlineColorHandler")]' in the contract to '[RegisterAttribute("getUnderlineColor", "()I", "GetGetUnderlineColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.FontFeatureSettings.get()' changed from '[RegisterAttribute("getFontFeatureSettings", "()Ljava/lang/String;", "GetGetFontFeatureSettingsHandler")]' in the contract to '[RegisterAttribute("getFontFeatureSettings", "()Ljava/lang/String;", "GetGetFontFeatureSettingsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.FontVariationSettings.get()' changed from '[RegisterAttribute("getFontVariationSettings", "()Ljava/lang/String;", "GetGetFontVariationSettingsHandler")]' in the contract to '[RegisterAttribute("getFontVariationSettings", "()Ljava/lang/String;", "GetGetFontVariationSettingsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.IsElegantTextHeight.get()' changed from '[RegisterAttribute("isElegantTextHeight", "()Z", "GetIsElegantTextHeightHandler")]' in the contract to '[RegisterAttribute("isElegantTextHeight", "()Z", "GetIsElegantTextHeightHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.ShadowColor.get()' changed from '[RegisterAttribute("getShadowColor", "()I", "GetGetShadowColorHandler")]' in the contract to '[RegisterAttribute("getShadowColor", "()I", "GetGetShadowColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.ShadowDx.get()' changed from '[RegisterAttribute("getShadowDx", "()F", "GetGetShadowDxHandler")]' in the contract to '[RegisterAttribute("getShadowDx", "()F", "GetGetShadowDxHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.ShadowDy.get()' changed from '[RegisterAttribute("getShadowDy", "()F", "GetGetShadowDyHandler")]' in the contract to '[RegisterAttribute("getShadowDy", "()F", "GetGetShadowDyHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.ShadowRadius.get()' changed from '[RegisterAttribute("getShadowRadius", "()F", "GetGetShadowRadiusHandler")]' in the contract to '[RegisterAttribute("getShadowRadius", "()F", "GetGetShadowRadiusHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.TextFontWeight.get()' changed from '[RegisterAttribute("getTextFontWeight", "()I", "GetGetTextFontWeightHandler")]' in the contract to '[RegisterAttribute("getTextFontWeight", "()I", "GetGetTextFontWeightHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.TextLocales.get()' changed from '[RegisterAttribute("getTextLocales", "()Landroid/os/LocaleList;", "GetGetTextLocalesHandler")]' in the contract to '[RegisterAttribute("getTextLocales", "()Landroid/os/LocaleList;", "GetGetTextLocalesHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Style.TextAppearanceSpan.Typeface.get()' changed from '[RegisterAttribute("getTypeface", "()Landroid/graphics/Typeface;", "GetGetTypefaceHandler")]' in the contract to '[RegisterAttribute("getTypeface", "()Landroid/graphics/Typeface;", "GetGetTypefaceHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Text.Util.Linkify.AddLinks(Android.Text.ISpannable, Android.Text.Util.MatchOptions, Java.Util.Functions.IFunction)' changed from '[RegisterAttribute("addLinks", "(Landroid/text/Spannable;ILjava/util/function/Function;)Z", "")]' in the contract to '[RegisterAttribute("addLinks", "(Landroid/text/Spannable;ILjava/util/function/Function;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' 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, Java.Util.Functions.IFunction)' changed from '[RegisterAttribute("addLinks", "(Landroid/text/Spannable;Ljava/util/regex/Pattern;Ljava/lang/String;[Ljava/lang/String;Landroid/text/util/Linkify$MatchFilter;Landroid/text/util/Linkify$TransformFilter;Ljava/util/function/Function;)Z", "")]' in the contract to '[RegisterAttribute("addLinks", "(Landroid/text/Spannable;Ljava/util/regex/Pattern;Ljava/lang/String;[Ljava/lang/String;Landroid/text/util/Linkify$MatchFilter;Landroid/text/util/Linkify$TransformFilter;Ljava/util/function/Function;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Transitions.Scene.GetCurrentScene(Android.Views.ViewGroup)' changed from '[RegisterAttribute("getCurrentScene", "(Landroid/view/ViewGroup;)Landroid/transition/Scene;", "")]' in the contract to '[RegisterAttribute("getCurrentScene", "(Landroid/view/ViewGroup;)Landroid/transition/Scene;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Transitions.TransitionValues..ctor(Android.Views.View)' changed from '[RegisterAttribute(".ctor", "(Landroid/view/View;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Landroid/view/View;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.ArrayMap.IndexOfValue(Java.Lang.Object)' changed from '[RegisterAttribute("indexOfValue", "(Ljava/lang/Object;)I", "")]' in the contract to '[RegisterAttribute("indexOfValue", "(Ljava/lang/Object;)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.ArraySet..ctor(System.Collections.ICollection)' changed from '[RegisterAttribute(".ctor", "(Ljava/util/Collection;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Ljava/util/Collection;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.DisplayMetricsDensity Android.Util.DisplayMetrics.Density140' changed from '[RegisterAttribute("DENSITY_140")]' in the contract to '[RegisterAttribute("DENSITY_140", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.DisplayMetricsDensity Android.Util.DisplayMetrics.Density180' changed from '[RegisterAttribute("DENSITY_180")]' in the contract to '[RegisterAttribute("DENSITY_180", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.DisplayMetricsDensity Android.Util.DisplayMetrics.Density200' changed from '[RegisterAttribute("DENSITY_200")]' in the contract to '[RegisterAttribute("DENSITY_200", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.DisplayMetricsDensity Android.Util.DisplayMetrics.Density220' changed from '[RegisterAttribute("DENSITY_220")]' in the contract to '[RegisterAttribute("DENSITY_220", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.SparseBooleanArray.SetValueAt(System.Int32, System.Boolean)' changed from '[RegisterAttribute("setValueAt", "(IZ)V", "GetSetValueAt_IZHandler")]' in the contract to '[RegisterAttribute("setValueAt", "(IZ)V", "GetSetValueAt_IZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.SparseIntArray.SetValueAt(System.Int32, System.Int32)' changed from '[RegisterAttribute("setValueAt", "(II)V", "GetSetValueAt_IIHandler")]' in the contract to '[RegisterAttribute("setValueAt", "(II)V", "GetSetValueAt_IIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.StatsLog.LogBinaryPushStateChanged(System.String, System.Int64, System.Int32, System.Int32, System.Int64[])' changed from '[RegisterAttribute("logBinaryPushStateChanged", "(Ljava/lang/String;JII[J)Z", "")]' in the contract to '[RegisterAttribute("logBinaryPushStateChanged", "(Ljava/lang/String;JII[J)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.TypedValue.SourceResourceId' changed from '[RegisterAttribute("sourceResourceId")]' in the contract to '[RegisterAttribute("sourceResourceId", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Util.TypedValue.IsColorType.get()' changed from '[RegisterAttribute("isColorType", "()Z", "GetIsColorTypeHandler")]' in the contract to '[RegisterAttribute("isColorType", "()Z", "GetIsColorTypeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContextThemeWrapper.SetTheme(Android.Content.Res.Resources.Theme)' changed from '[RegisterAttribute("setTheme", "(Landroid/content/res/Resources$Theme;)V", "GetSetTheme_Landroid_content_res_Resources_Theme_Handler")]' in the contract to '[RegisterAttribute("setTheme", "(Landroid/content/res/Resources$Theme;)V", "GetSetTheme_Landroid_content_res_Resources_Theme_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Display.Cutout.get()' changed from '[RegisterAttribute("getCutout", "()Landroid/view/DisplayCutout;", "GetGetCutoutHandler")]' in the contract to '[RegisterAttribute("getCutout", "()Landroid/view/DisplayCutout;", "GetGetCutoutHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Display.PreferredWideGamutColorSpace.get()' changed from '[RegisterAttribute("getPreferredWideGamutColorSpace", "()Landroid/graphics/ColorSpace;", "GetGetPreferredWideGamutColorSpaceHandler")]' in the contract to '[RegisterAttribute("getPreferredWideGamutColorSpace", "()Landroid/graphics/ColorSpace;", "GetGetPreferredWideGamutColorSpaceHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.HdrType Android.Views.Display.HdrCapabilities.HdrTypeHdr10Plus' changed from '[RegisterAttribute("HDR_TYPE_HDR10_PLUS")]' in the contract to '[RegisterAttribute("HDR_TYPE_HDR10_PLUS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.DisplayCutout..ctor(Android.Graphics.Insets, Android.Graphics.Rect, Android.Graphics.Rect, Android.Graphics.Rect, Android.Graphics.Rect)' changed from '[RegisterAttribute(".ctor", "(Landroid/graphics/Insets;Landroid/graphics/Rect;Landroid/graphics/Rect;Landroid/graphics/Rect;Landroid/graphics/Rect;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Landroid/graphics/Insets;Landroid/graphics/Rect;Landroid/graphics/Rect;Landroid/graphics/Rect;Landroid/graphics/Rect;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.DisplayCutout.BoundingRectBottom.get()' changed from '[RegisterAttribute("getBoundingRectBottom", "()Landroid/graphics/Rect;", "")]' in the contract to '[RegisterAttribute("getBoundingRectBottom", "()Landroid/graphics/Rect;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.DisplayCutout.BoundingRectLeft.get()' changed from '[RegisterAttribute("getBoundingRectLeft", "()Landroid/graphics/Rect;", "")]' in the contract to '[RegisterAttribute("getBoundingRectLeft", "()Landroid/graphics/Rect;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.DisplayCutout.BoundingRectRight.get()' changed from '[RegisterAttribute("getBoundingRectRight", "()Landroid/graphics/Rect;", "")]' in the contract to '[RegisterAttribute("getBoundingRectRight", "()Landroid/graphics/Rect;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.DisplayCutout.BoundingRectTop.get()' changed from '[RegisterAttribute("getBoundingRectTop", "()Landroid/graphics/Rect;", "")]' in the contract to '[RegisterAttribute("getBoundingRectTop", "()Landroid/graphics/Rect;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.InputDevice.IsExternal.get()' changed from '[RegisterAttribute("isExternal", "()Z", "")]' in the contract to '[RegisterAttribute("isExternal", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.LayoutInflater.CreateView(Android.Content.Context, System.String, System.String, Android.Util.IAttributeSet)' changed from '[RegisterAttribute("createView", "(Landroid/content/Context;Ljava/lang/String;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View;", "")]' in the contract to '[RegisterAttribute("createView", "(Landroid/content/Context;Ljava/lang/String;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.LayoutInflater.OnCreateView(Android.Content.Context, Android.Views.View, System.String, Android.Util.IAttributeSet)' changed from '[RegisterAttribute("onCreateView", "(Landroid/content/Context;Landroid/view/View;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View;", "GetOnCreateView_Landroid_content_Context_Landroid_view_View_Ljava_lang_String_Landroid_util_AttributeSet_Handler")]' in the contract to '[RegisterAttribute("onCreateView", "(Landroid/content/Context;Landroid/view/View;Ljava/lang/String;Landroid/util/AttributeSet;)Landroid/view/View;", "GetOnCreateView_Landroid_content_Context_Landroid_view_View_Ljava_lang_String_Landroid_util_AttributeSet_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ClassificationMode Android.Views.MotionEvent.ClassificationAmbiguousGesture' changed from '[RegisterAttribute("CLASSIFICATION_AMBIGUOUS_GESTURE")]' in the contract to '[RegisterAttribute("CLASSIFICATION_AMBIGUOUS_GESTURE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ClassificationMode Android.Views.MotionEvent.ClassificationDeepPress' changed from '[RegisterAttribute("CLASSIFICATION_DEEP_PRESS")]' in the contract to '[RegisterAttribute("CLASSIFICATION_DEEP_PRESS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ClassificationMode Android.Views.MotionEvent.ClassificationNone' changed from '[RegisterAttribute("CLASSIFICATION_NONE")]' in the contract to '[RegisterAttribute("CLASSIFICATION_NONE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.MotionEventFlags Android.Views.MotionEvent.FlagWindowIsPartiallyObscured' changed from '[RegisterAttribute("FLAG_WINDOW_IS_PARTIALLY_OBSCURED")]' in the contract to '[RegisterAttribute("FLAG_WINDOW_IS_PARTIALLY_OBSCURED", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.MotionEvent.Classification.get()' changed from '[RegisterAttribute("getClassification", "()I", "")]' in the contract to '[RegisterAttribute("getClassification", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.MotionEvent.GetRawX(System.Int32)' changed from '[RegisterAttribute("getRawX", "(I)F", "")]' in the contract to '[RegisterAttribute("getRawX", "(I)F", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.MotionEvent.GetRawY(System.Int32)' changed from '[RegisterAttribute("getRawY", "(I)F", "")]' in the contract to '[RegisterAttribute("getRawY", "(I)F", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Surface..ctor(Android.Views.SurfaceControl)' changed from '[RegisterAttribute(".ctor", "(Landroid/view/SurfaceControl;)V", "")]' in the contract to '[RegisterAttribute(".ctor", "(Landroid/view/SurfaceControl;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.SurfaceControl' changed from '[RegisterAttribute("android/view/SurfaceControl", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/SurfaceControl", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.SurfaceControl.Builder' changed from '[RegisterAttribute("android/view/SurfaceControl$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/SurfaceControl$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.SurfaceControl.Transaction' changed from '[RegisterAttribute("android/view/SurfaceControl$Transaction", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/SurfaceControl$Transaction", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.SurfaceView.SurfaceControl.get()' changed from '[RegisterAttribute("getSurfaceControl", "()Landroid/view/SurfaceControl;", "GetGetSurfaceControlHandler")]' in the contract to '[RegisterAttribute("getSurfaceControl", "()Landroid/view/SurfaceControl;", "GetGetSurfaceControlHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TouchDelegate.OnTouchExplorationHoverEvent(Android.Views.MotionEvent)' changed from '[RegisterAttribute("onTouchExplorationHoverEvent", "(Landroid/view/MotionEvent;)Z", "GetOnTouchExplorationHoverEvent_Landroid_view_MotionEvent_Handler")]' in the contract to '[RegisterAttribute("onTouchExplorationHoverEvent", "(Landroid/view/MotionEvent;)Z", "GetOnTouchExplorationHoverEvent_Landroid_view_MotionEvent_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TouchDelegate.TouchDelegateInfo.get()' changed from '[RegisterAttribute("getTouchDelegateInfo", "()Landroid/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo;", "GetGetTouchDelegateInfoHandler")]' in the contract to '[RegisterAttribute("getTouchDelegateInfo", "()Landroid/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo;", "GetGetTouchDelegateInfoHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.AnimationMatrix.get()' changed from '[RegisterAttribute("getAnimationMatrix", "()Landroid/graphics/Matrix;", "GetGetAnimationMatrixHandler")]' in the contract to '[RegisterAttribute("getAnimationMatrix", "()Landroid/graphics/Matrix;", "GetGetAnimationMatrixHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.AnimationMatrix.set(Android.Graphics.Matrix)' changed from '[RegisterAttribute("setAnimationMatrix", "(Landroid/graphics/Matrix;)V", "GetSetAnimationMatrix_Landroid_graphics_Matrix_Handler")]' in the contract to '[RegisterAttribute("setAnimationMatrix", "(Landroid/graphics/Matrix;)V", "GetSetAnimationMatrix_Landroid_graphics_Matrix_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.AttributeSourceResourceMap.get()' changed from '[RegisterAttribute("getAttributeSourceResourceMap", "()Ljava/util/Map;", "GetGetAttributeSourceResourceMapHandler")]' in the contract to '[RegisterAttribute("getAttributeSourceResourceMap", "()Ljava/util/Map;", "GetGetAttributeSourceResourceMapHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.BackgroundTintBlendMode.get()' changed from '[RegisterAttribute("getBackgroundTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetBackgroundTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getBackgroundTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetBackgroundTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.BackgroundTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setBackgroundTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetBackgroundTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setBackgroundTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetBackgroundTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.ContentCaptureSession.get()' changed from '[RegisterAttribute("getContentCaptureSession", "()Landroid/view/contentcapture/ContentCaptureSession;", "")]' in the contract to '[RegisterAttribute("getContentCaptureSession", "()Landroid/view/contentcapture/ContentCaptureSession;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.ContentCaptureSession.set(Android.Views.ContentCaptures.ContentCaptureSession)' changed from '[RegisterAttribute("setContentCaptureSession", "(Landroid/view/contentcapture/ContentCaptureSession;)V", "GetSetContentCaptureSession_Landroid_view_contentcapture_ContentCaptureSession_Handler")]' in the contract to '[RegisterAttribute("setContentCaptureSession", "(Landroid/view/contentcapture/ContentCaptureSession;)V", "GetSetContentCaptureSession_Landroid_view_contentcapture_ContentCaptureSession_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.ExplicitStyle.get()' changed from '[RegisterAttribute("getExplicitStyle", "()I", "GetGetExplicitStyleHandler")]' in the contract to '[RegisterAttribute("getExplicitStyle", "()I", "GetGetExplicitStyleHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.ForceDarkAllowed.get()' changed from '[RegisterAttribute("isForceDarkAllowed", "()Z", "GetIsForceDarkAllowedHandler")]' in the contract to '[RegisterAttribute("isForceDarkAllowed", "()Z", "GetIsForceDarkAllowedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.ForceDarkAllowed.set(System.Boolean)' changed from '[RegisterAttribute("setForceDarkAllowed", "(Z)V", "GetSetForceDarkAllowed_ZHandler")]' in the contract to '[RegisterAttribute("setForceDarkAllowed", "(Z)V", "GetSetForceDarkAllowed_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.ForegroundTintBlendMode.get()' changed from '[RegisterAttribute("getForegroundTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetForegroundTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getForegroundTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetForegroundTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.ForegroundTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setForegroundTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetForegroundTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setForegroundTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetForegroundTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.GetAccessibilityDelegate()' changed from '[RegisterAttribute("getAccessibilityDelegate", "()Landroid/view/View$AccessibilityDelegate;", "GetGetAccessibilityDelegateHandler")]' in the contract to '[RegisterAttribute("getAccessibilityDelegate", "()Landroid/view/View$AccessibilityDelegate;", "GetGetAccessibilityDelegateHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.GetAttributeResolutionStack(System.Int32)' changed from '[RegisterAttribute("getAttributeResolutionStack", "(I)[I", "GetGetAttributeResolutionStack_IHandler")]' in the contract to '[RegisterAttribute("getAttributeResolutionStack", "(I)[I", "GetGetAttributeResolutionStack_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.GetLocationInSurface(System.Int32[])' changed from '[RegisterAttribute("getLocationInSurface", "([I)V", "GetGetLocationInSurface_arrayIHandler")]' in the contract to '[RegisterAttribute("getLocationInSurface", "([I)V", "GetGetLocationInSurface_arrayIHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.HorizontalScrollbarThumbDrawable.get()' changed from '[RegisterAttribute("getHorizontalScrollbarThumbDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetHorizontalScrollbarThumbDrawableHandler")]' in the contract to '[RegisterAttribute("getHorizontalScrollbarThumbDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetHorizontalScrollbarThumbDrawableHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.HorizontalScrollbarThumbDrawable.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setHorizontalScrollbarThumbDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetHorizontalScrollbarThumbDrawable_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setHorizontalScrollbarThumbDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetHorizontalScrollbarThumbDrawable_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.HorizontalScrollbarTrackDrawable.get()' changed from '[RegisterAttribute("getHorizontalScrollbarTrackDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetHorizontalScrollbarTrackDrawableHandler")]' in the contract to '[RegisterAttribute("getHorizontalScrollbarTrackDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetHorizontalScrollbarTrackDrawableHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.HorizontalScrollbarTrackDrawable.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setHorizontalScrollbarTrackDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetHorizontalScrollbarTrackDrawable_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setHorizontalScrollbarTrackDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetHorizontalScrollbarTrackDrawable_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.SaveAttributeDataForStyleable(Android.Content.Context, System.Int32[], Android.Util.IAttributeSet, Android.Content.Res.TypedArray, System.Int32, System.Int32)' changed from '[RegisterAttribute("saveAttributeDataForStyleable", "(Landroid/content/Context;[ILandroid/util/AttributeSet;Landroid/content/res/TypedArray;II)V", "")]' in the contract to '[RegisterAttribute("saveAttributeDataForStyleable", "(Landroid/content/Context;[ILandroid/util/AttributeSet;Landroid/content/res/TypedArray;II)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.SetLeftTopRightBottom(System.Int32, System.Int32, System.Int32, System.Int32)' changed from '[RegisterAttribute("setLeftTopRightBottom", "(IIII)V", "")]' in the contract to '[RegisterAttribute("setLeftTopRightBottom", "(IIII)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.SetTransitionVisibility(Android.Views.ViewStates)' changed from '[RegisterAttribute("setTransitionVisibility", "(I)V", "GetSetTransitionVisibility_IHandler")]' in the contract to '[RegisterAttribute("setTransitionVisibility", "(I)V", "GetSetTransitionVisibility_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.SourceLayoutResId.get()' changed from '[RegisterAttribute("getSourceLayoutResId", "()I", "GetGetSourceLayoutResIdHandler")]' in the contract to '[RegisterAttribute("getSourceLayoutResId", "()I", "GetGetSourceLayoutResIdHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.SystemGestureExclusionRects.get()' changed from '[RegisterAttribute("getSystemGestureExclusionRects", "()Ljava/util/List;", "GetGetSystemGestureExclusionRectsHandler")]' in the contract to '[RegisterAttribute("getSystemGestureExclusionRects", "()Ljava/util/List;", "GetGetSystemGestureExclusionRectsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.SystemGestureExclusionRects.set(System.Collections.Generic.IList)' changed from '[RegisterAttribute("setSystemGestureExclusionRects", "(Ljava/util/List;)V", "GetSetSystemGestureExclusionRects_Ljava_util_List_Handler")]' in the contract to '[RegisterAttribute("setSystemGestureExclusionRects", "(Ljava/util/List;)V", "GetSetSystemGestureExclusionRects_Ljava_util_List_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.TransformMatrixToGlobal(Android.Graphics.Matrix)' changed from '[RegisterAttribute("transformMatrixToGlobal", "(Landroid/graphics/Matrix;)V", "GetTransformMatrixToGlobal_Landroid_graphics_Matrix_Handler")]' in the contract to '[RegisterAttribute("transformMatrixToGlobal", "(Landroid/graphics/Matrix;)V", "GetTransformMatrixToGlobal_Landroid_graphics_Matrix_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.TransformMatrixToLocal(Android.Graphics.Matrix)' changed from '[RegisterAttribute("transformMatrixToLocal", "(Landroid/graphics/Matrix;)V", "GetTransformMatrixToLocal_Landroid_graphics_Matrix_Handler")]' in the contract to '[RegisterAttribute("transformMatrixToLocal", "(Landroid/graphics/Matrix;)V", "GetTransformMatrixToLocal_Landroid_graphics_Matrix_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.TransitionAlpha.get()' changed from '[RegisterAttribute("getTransitionAlpha", "()F", "GetGetTransitionAlphaHandler")]' in the contract to '[RegisterAttribute("getTransitionAlpha", "()F", "GetGetTransitionAlphaHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.TransitionAlpha.set(System.Single)' changed from '[RegisterAttribute("setTransitionAlpha", "(F)V", "GetSetTransitionAlpha_FHandler")]' in the contract to '[RegisterAttribute("setTransitionAlpha", "(F)V", "GetSetTransitionAlpha_FHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.UniqueDrawingId.get()' changed from '[RegisterAttribute("getUniqueDrawingId", "()J", "GetGetUniqueDrawingIdHandler")]' in the contract to '[RegisterAttribute("getUniqueDrawingId", "()J", "GetGetUniqueDrawingIdHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.VerticalScrollbarThumbDrawable.get()' changed from '[RegisterAttribute("getVerticalScrollbarThumbDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetVerticalScrollbarThumbDrawableHandler")]' in the contract to '[RegisterAttribute("getVerticalScrollbarThumbDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetVerticalScrollbarThumbDrawableHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.VerticalScrollbarThumbDrawable.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setVerticalScrollbarThumbDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetVerticalScrollbarThumbDrawable_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setVerticalScrollbarThumbDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetVerticalScrollbarThumbDrawable_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.VerticalScrollbarTrackDrawable.get()' changed from '[RegisterAttribute("getVerticalScrollbarTrackDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetVerticalScrollbarTrackDrawableHandler")]' in the contract to '[RegisterAttribute("getVerticalScrollbarTrackDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetVerticalScrollbarTrackDrawableHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.View.VerticalScrollbarTrackDrawable.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setVerticalScrollbarTrackDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetVerticalScrollbarTrackDrawable_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setVerticalScrollbarTrackDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetVerticalScrollbarTrackDrawable_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewConfiguration.AmbiguousGestureMultiplier.get()' changed from '[RegisterAttribute("getAmbiguousGestureMultiplier", "()F", "")]' in the contract to '[RegisterAttribute("getAmbiguousGestureMultiplier", "()F", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewConfiguration.ScaledMinimumScalingSpan.get()' changed from '[RegisterAttribute("getScaledMinimumScalingSpan", "()I", "GetGetScaledMinimumScalingSpanHandler")]' in the contract to '[RegisterAttribute("getScaledMinimumScalingSpan", "()I", "GetGetScaledMinimumScalingSpanHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewGroup.GetChildDrawingOrder(System.Int32)' changed from '[RegisterAttribute("getChildDrawingOrder", "(I)I", "")]' in the contract to '[RegisterAttribute("getChildDrawingOrder", "(I)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewGroup.IsLayoutSuppressed.get()' changed from '[RegisterAttribute("isLayoutSuppressed", "()Z", "GetIsLayoutSuppressedHandler")]' in the contract to '[RegisterAttribute("isLayoutSuppressed", "()Z", "GetIsLayoutSuppressedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewGroup.SuppressLayout(System.Boolean)' changed from '[RegisterAttribute("suppressLayout", "(Z)V", "GetSuppressLayout_ZHandler")]' in the contract to '[RegisterAttribute("suppressLayout", "(Z)V", "GetSuppressLayout_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewTreeObserver.AddOnSystemGestureExclusionRectsChangedListener(Java.Util.Functions.IConsumer)' changed from '[RegisterAttribute("addOnSystemGestureExclusionRectsChangedListener", "(Ljava/util/function/Consumer;)V", "")]' in the contract to '[RegisterAttribute("addOnSystemGestureExclusionRectsChangedListener", "(Ljava/util/function/Consumer;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewTreeObserver.RegisterFrameCommitCallback(Java.Lang.IRunnable)' changed from '[RegisterAttribute("registerFrameCommitCallback", "(Ljava/lang/Runnable;)V", "")]' in the contract to '[RegisterAttribute("registerFrameCommitCallback", "(Ljava/lang/Runnable;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewTreeObserver.RemoveOnSystemGestureExclusionRectsChangedListener(Java.Util.Functions.IConsumer)' changed from '[RegisterAttribute("removeOnSystemGestureExclusionRectsChangedListener", "(Ljava/util/function/Consumer;)V", "")]' in the contract to '[RegisterAttribute("removeOnSystemGestureExclusionRectsChangedListener", "(Ljava/util/function/Consumer;)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ViewTreeObserver.UnregisterFrameCommitCallback(Java.Lang.IRunnable)' changed from '[RegisterAttribute("unregisterFrameCommitCallback", "(Ljava/lang/Runnable;)Z", "")]' in the contract to '[RegisterAttribute("unregisterFrameCommitCallback", "(Ljava/lang/Runnable;)Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Window.NavigationBarContrastEnforced.get()' changed from '[RegisterAttribute("isNavigationBarContrastEnforced", "()Z", "GetIsNavigationBarContrastEnforcedHandler")]' in the contract to '[RegisterAttribute("isNavigationBarContrastEnforced", "()Z", "GetIsNavigationBarContrastEnforcedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Window.NavigationBarContrastEnforced.set(System.Boolean)' changed from '[RegisterAttribute("setNavigationBarContrastEnforced", "(Z)V", "GetSetNavigationBarContrastEnforced_ZHandler")]' in the contract to '[RegisterAttribute("setNavigationBarContrastEnforced", "(Z)V", "GetSetNavigationBarContrastEnforced_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Window.StatusBarContrastEnforced.get()' changed from '[RegisterAttribute("isStatusBarContrastEnforced", "()Z", "GetIsStatusBarContrastEnforcedHandler")]' in the contract to '[RegisterAttribute("isStatusBarContrastEnforced", "()Z", "GetIsStatusBarContrastEnforcedHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Window.StatusBarContrastEnforced.set(System.Boolean)' changed from '[RegisterAttribute("setStatusBarContrastEnforced", "(Z)V", "GetSetStatusBarContrastEnforced_ZHandler")]' in the contract to '[RegisterAttribute("setStatusBarContrastEnforced", "(Z)V", "GetSetStatusBarContrastEnforced_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Window.SystemGestureExclusionRects.get()' changed from '[RegisterAttribute("getSystemGestureExclusionRects", "()Ljava/util/List;", "GetGetSystemGestureExclusionRectsHandler")]' in the contract to '[RegisterAttribute("getSystemGestureExclusionRects", "()Ljava/util/List;", "GetGetSystemGestureExclusionRectsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Window.SystemGestureExclusionRects.set(System.Collections.Generic.IList)' changed from '[RegisterAttribute("setSystemGestureExclusionRects", "(Ljava/util/List;)V", "GetSetSystemGestureExclusionRects_Ljava_util_List_Handler")]' in the contract to '[RegisterAttribute("setSystemGestureExclusionRects", "(Ljava/util/List;)V", "GetSetSystemGestureExclusionRects_Ljava_util_List_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.WindowInsets.Inset(System.Int32, System.Int32, System.Int32, System.Int32)' changed from '[RegisterAttribute("inset", "(IIII)Landroid/view/WindowInsets;", "")]' in the contract to '[RegisterAttribute("inset", "(IIII)Landroid/view/WindowInsets;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.WindowInsets.MandatorySystemGestureInsets.get()' changed from '[RegisterAttribute("getMandatorySystemGestureInsets", "()Landroid/graphics/Insets;", "")]' in the contract to '[RegisterAttribute("getMandatorySystemGestureInsets", "()Landroid/graphics/Insets;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.WindowInsets.StableInsets.get()' changed from '[RegisterAttribute("getStableInsets", "()Landroid/graphics/Insets;", "")]' in the contract to '[RegisterAttribute("getStableInsets", "()Landroid/graphics/Insets;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.WindowInsets.SystemGestureInsets.get()' changed from '[RegisterAttribute("getSystemGestureInsets", "()Landroid/graphics/Insets;", "")]' in the contract to '[RegisterAttribute("getSystemGestureInsets", "()Landroid/graphics/Insets;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.WindowInsets.SystemWindowInsets.get()' changed from '[RegisterAttribute("getSystemWindowInsets", "()Landroid/graphics/Insets;", "")]' in the contract to '[RegisterAttribute("getSystemWindowInsets", "()Landroid/graphics/Insets;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.WindowInsets.TappableElementInsets.get()' changed from '[RegisterAttribute("getTappableElementInsets", "()Landroid/graphics/Insets;", "")]' in the contract to '[RegisterAttribute("getTappableElementInsets", "()Landroid/graphics/Insets;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.WindowInsets.Builder' changed from '[RegisterAttribute("android/view/WindowInsets$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/WindowInsets$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.ContentMode Android.Views.Accessibility.AccessibilityManager.FlagContentControls' changed from '[RegisterAttribute("FLAG_CONTENT_CONTROLS")]' in the contract to '[RegisterAttribute("FLAG_CONTENT_CONTROLS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.ContentMode Android.Views.Accessibility.AccessibilityManager.FlagContentIcons' changed from '[RegisterAttribute("FLAG_CONTENT_ICONS")]' in the contract to '[RegisterAttribute("FLAG_CONTENT_ICONS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.ContentMode Android.Views.Accessibility.AccessibilityManager.FlagContentText' changed from '[RegisterAttribute("FLAG_CONTENT_TEXT")]' in the contract to '[RegisterAttribute("FLAG_CONTENT_TEXT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityManager.GetRecommendedTimeoutMillis(System.Int32, Android.Views.Accessibility.ContentMode)' changed from '[RegisterAttribute("getRecommendedTimeoutMillis", "(II)I", "")]' in the contract to '[RegisterAttribute("getRecommendedTimeoutMillis", "(II)I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.GetTouchDelegateInfo()' changed from '[RegisterAttribute("getTouchDelegateInfo", "()Landroid/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo;", "GetGetTouchDelegateInfoHandler")]' in the contract to '[RegisterAttribute("getTouchDelegateInfo", "()Landroid/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo;", "GetGetTouchDelegateInfoHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.SetTouchDelegateInfo(Android.Views.Accessibility.AccessibilityNodeInfo.TouchDelegateInfo)' changed from '[RegisterAttribute("setTouchDelegateInfo", "(Landroid/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo;)V", "GetSetTouchDelegateInfo_Landroid_view_accessibility_AccessibilityNodeInfo_TouchDelegateInfo_Handler")]' in the contract to '[RegisterAttribute("setTouchDelegateInfo", "(Landroid/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo;)V", "GetSetTouchDelegateInfo_Landroid_view_accessibility_AccessibilityNodeInfo_TouchDelegateInfo_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.TextEntryKey.get()' changed from '[RegisterAttribute("isTextEntryKey", "()Z", "GetIsTextEntryKeyHandler")]' in the contract to '[RegisterAttribute("isTextEntryKey", "()Z", "GetIsTextEntryKeyHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.TextEntryKey.set(System.Boolean)' changed from '[RegisterAttribute("setTextEntryKey", "(Z)V", "GetSetTextEntryKey_ZHandler")]' in the contract to '[RegisterAttribute("setTextEntryKey", "(Z)V", "GetSetTextEntryKey_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.AccessibilityAction.ActionPageDown' changed from '[RegisterAttribute("ACTION_PAGE_DOWN")]' in the contract to '[RegisterAttribute("ACTION_PAGE_DOWN", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.AccessibilityAction.ActionPageLeft' changed from '[RegisterAttribute("ACTION_PAGE_LEFT")]' in the contract to '[RegisterAttribute("ACTION_PAGE_LEFT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.AccessibilityAction.ActionPageRight' changed from '[RegisterAttribute("ACTION_PAGE_RIGHT")]' in the contract to '[RegisterAttribute("ACTION_PAGE_RIGHT", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.AccessibilityAction.ActionPageUp' changed from '[RegisterAttribute("ACTION_PAGE_UP")]' in the contract to '[RegisterAttribute("ACTION_PAGE_UP", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Accessibility.AccessibilityNodeInfo.TouchDelegateInfo' changed from '[RegisterAttribute("android/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/accessibility/AccessibilityNodeInfo$TouchDelegateInfo", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.ContentCaptureCondition' changed from '[RegisterAttribute("android/view/contentcapture/ContentCaptureCondition", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/ContentCaptureCondition", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.ContentCaptureContext' changed from '[RegisterAttribute("android/view/contentcapture/ContentCaptureContext", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/ContentCaptureContext", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.ContentCaptureContext.Builder' changed from '[RegisterAttribute("android/view/contentcapture/ContentCaptureContext$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/ContentCaptureContext$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.ContentCaptureManager' changed from '[RegisterAttribute("android/view/contentcapture/ContentCaptureManager", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/ContentCaptureManager", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.ContentCaptureSession' changed from '[RegisterAttribute("android/view/contentcapture/ContentCaptureSession", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/ContentCaptureSession", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.ContentCaptureSessionId' changed from '[RegisterAttribute("android/view/contentcapture/ContentCaptureSessionId", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/ContentCaptureSessionId", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.DataRemovalRequest' changed from '[RegisterAttribute("android/view/contentcapture/DataRemovalRequest", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/DataRemovalRequest", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.DataRemovalRequest.Builder' changed from '[RegisterAttribute("android/view/contentcapture/DataRemovalRequest$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/DataRemovalRequest$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.ContentCaptures.DataRemovalRequest.LocusIdRequest' changed from '[RegisterAttribute("android/view/contentcapture/DataRemovalRequest$LocusIdRequest", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/contentcapture/DataRemovalRequest$LocusIdRequest", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.IInspectionCompanion' changed from '[RegisterAttribute("android/view/inspector/InspectionCompanion", "", "Android.Views.Inspectors.IInspectionCompanionInvoker")]' in the contract to '[RegisterAttribute("android/view/inspector/InspectionCompanion", "", "Android.Views.Inspectors.IInspectionCompanionInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.IInspectionCompanionProvider' changed from '[RegisterAttribute("android/view/inspector/InspectionCompanionProvider", "", "Android.Views.Inspectors.IInspectionCompanionProviderInvoker")]' in the contract to '[RegisterAttribute("android/view/inspector/InspectionCompanionProvider", "", "Android.Views.Inspectors.IInspectionCompanionProviderInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.InspectionCompanionUninitializedPropertyMapException' changed from '[RegisterAttribute("android/view/inspector/InspectionCompanion$UninitializedPropertyMapException", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/inspector/InspectionCompanion$UninitializedPropertyMapException", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.IntFlagMapping' changed from '[RegisterAttribute("android/view/inspector/IntFlagMapping", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/inspector/IntFlagMapping", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.IPropertyMapper' changed from '[RegisterAttribute("android/view/inspector/PropertyMapper", "", "Android.Views.Inspectors.IPropertyMapperInvoker")]' in the contract to '[RegisterAttribute("android/view/inspector/PropertyMapper", "", "Android.Views.Inspectors.IPropertyMapperInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.IPropertyReader' changed from '[RegisterAttribute("android/view/inspector/PropertyReader", "", "Android.Views.Inspectors.IPropertyReaderInvoker")]' in the contract to '[RegisterAttribute("android/view/inspector/PropertyReader", "", "Android.Views.Inspectors.IPropertyReaderInvoker", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.PropertyMapperPropertyConflictException' changed from '[RegisterAttribute("android/view/inspector/PropertyMapper$PropertyConflictException", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/inspector/PropertyMapper$PropertyConflictException", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.PropertyReaderPropertyTypeMismatchException' changed from '[RegisterAttribute("android/view/inspector/PropertyReader$PropertyTypeMismatchException", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/inspector/PropertyReader$PropertyTypeMismatchException", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.StaticInspectionCompanionProvider' changed from '[RegisterAttribute("android/view/inspector/StaticInspectionCompanionProvider", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/inspector/StaticInspectionCompanionProvider", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.Inspectors.WindowInspector' changed from '[RegisterAttribute("android/view/inspector/WindowInspector", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/inspector/WindowInspector", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ConversationAction' changed from '[RegisterAttribute("android/view/textclassifier/ConversationAction", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/ConversationAction", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ConversationAction.Builder' changed from '[RegisterAttribute("android/view/textclassifier/ConversationAction$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/ConversationAction$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ConversationActions' changed from '[RegisterAttribute("android/view/textclassifier/ConversationActions", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/ConversationActions", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ConversationActions.Message' changed from '[RegisterAttribute("android/view/textclassifier/ConversationActions$Message", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/ConversationActions$Message", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ConversationActions.Message.Builder' changed from '[RegisterAttribute("android/view/textclassifier/ConversationActions$Message$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/ConversationActions$Message$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ConversationActions.Request' changed from '[RegisterAttribute("android/view/textclassifier/ConversationActions$Request", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/ConversationActions$Request", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ConversationActions.Request.Builder' changed from '[RegisterAttribute("android/view/textclassifier/ConversationActions$Request$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/ConversationActions$Request$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassification.Extras.get()' changed from '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassification.Builder.SetExtras(Android.OS.Bundle)' changed from '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextClassification$Builder;", "")]' in the contract to '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextClassification$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassification.Request.CallingPackageName.get()' changed from '[RegisterAttribute("getCallingPackageName", "()Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getCallingPackageName", "()Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassification.Request.Extras.get()' changed from '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassification.Request.Builder.SetExtras(Android.OS.Bundle)' changed from '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextClassification$Request$Builder;", "")]' in the contract to '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextClassification$Request$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Views.TextClassifiers.TextClassifier.ExtraFromTextClassifier' changed from '[RegisterAttribute("EXTRA_FROM_TEXT_CLASSIFIER")]' in the contract to '[RegisterAttribute("EXTRA_FROM_TEXT_CLASSIFIER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Views.TextClassifiers.TextClassifier.WidgetTypeNotification' changed from '[RegisterAttribute("WIDGET_TYPE_NOTIFICATION")]' in the contract to '[RegisterAttribute("WIDGET_TYPE_NOTIFICATION", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEntityConfig.ShouldIncludeTypesFromTextClassifier()' changed from '[RegisterAttribute("shouldIncludeTypesFromTextClassifier", "()Z", "")]' in the contract to '[RegisterAttribute("shouldIncludeTypesFromTextClassifier", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEntityConfig.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifier$EntityConfig$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifier$EntityConfig$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.ConversationActionsEvent' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.ConversationActionsEvent.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$ConversationActionsEvent$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.LanguageDetectionEvent' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.LanguageDetectionEvent.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$LanguageDetectionEvent$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.TextLinkifyEvent' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.TextLinkifyEvent.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextLinkifyEvent$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.TextSelectionEvent' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextSelectionEvent", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextSelectionEvent", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextClassifierEvent.TextSelectionEvent.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextSelectionEvent$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextClassifierEvent$TextSelectionEvent$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLanguage' changed from '[RegisterAttribute("android/view/textclassifier/TextLanguage", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextLanguage", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLanguage.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextLanguage$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextLanguage$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLanguage.Request' changed from '[RegisterAttribute("android/view/textclassifier/TextLanguage$Request", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextLanguage$Request", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLanguage.Request.Builder' changed from '[RegisterAttribute("android/view/textclassifier/TextLanguage$Request$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/view/textclassifier/TextLanguage$Request$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.ApplyStatusCode Android.Views.TextClassifiers.TextLinks.StatusUnsupportedCharacter' changed from '[RegisterAttribute("STATUS_UNSUPPORTED_CHARACTER")]' in the contract to '[RegisterAttribute("STATUS_UNSUPPORTED_CHARACTER", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLinks.Extras.get()' changed from '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLinks.Builder.AddLink(System.Int32, System.Int32, System.Collections.Generic.IDictionary, Android.OS.Bundle)' changed from '[RegisterAttribute("addLink", "(IILjava/util/Map;Landroid/os/Bundle;)Landroid/view/textclassifier/TextLinks$Builder;", "")]' in the contract to '[RegisterAttribute("addLink", "(IILjava/util/Map;Landroid/os/Bundle;)Landroid/view/textclassifier/TextLinks$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLinks.Builder.SetExtras(Android.OS.Bundle)' changed from '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextLinks$Builder;", "")]' in the contract to '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextLinks$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLinks.Request.CallingPackageName.get()' changed from '[RegisterAttribute("getCallingPackageName", "()Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getCallingPackageName", "()Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLinks.Request.Extras.get()' changed from '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLinks.Request.Builder.SetExtras(Android.OS.Bundle)' changed from '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextLinks$Request$Builder;", "")]' in the contract to '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextLinks$Request$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextLinks.TextLink.Extras.get()' changed from '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextSelection.Extras.get()' changed from '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextSelection.Builder.SetExtras(Android.OS.Bundle)' changed from '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextSelection$Builder;", "")]' in the contract to '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextSelection$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextSelection.Request.CallingPackageName.get()' changed from '[RegisterAttribute("getCallingPackageName", "()Ljava/lang/String;", "")]' in the contract to '[RegisterAttribute("getCallingPackageName", "()Ljava/lang/String;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextSelection.Request.Extras.get()' changed from '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "")]' in the contract to '[RegisterAttribute("getExtras", "()Landroid/os/Bundle;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Views.TextClassifiers.TextSelection.Request.Builder.SetExtras(Android.OS.Bundle)' changed from '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextSelection$Request$Builder;", "")]' in the contract to '[RegisterAttribute("setExtras", "(Landroid/os/Bundle;)Landroid/view/textclassifier/TextSelection$Request$Builder;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.ForceDarkMode Android.Webkit.WebSettings.ForceDarkAuto' changed from '[RegisterAttribute("FORCE_DARK_AUTO")]' in the contract to '[RegisterAttribute("FORCE_DARK_AUTO", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.ForceDarkMode Android.Webkit.WebSettings.ForceDarkOff' changed from '[RegisterAttribute("FORCE_DARK_OFF")]' in the contract to '[RegisterAttribute("FORCE_DARK_OFF", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.ForceDarkMode Android.Webkit.WebSettings.ForceDarkOn' changed from '[RegisterAttribute("FORCE_DARK_ON")]' in the contract to '[RegisterAttribute("FORCE_DARK_ON", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebSettings.ForceDark.get()' changed from '[RegisterAttribute("getForceDark", "()I", "GetGetForceDarkHandler")]' in the contract to '[RegisterAttribute("getForceDark", "()I", "GetGetForceDarkHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebSettings.ForceDark.set(Android.Webkit.ForceDarkMode)' changed from '[RegisterAttribute("setForceDark", "(I)V", "GetSetForceDark_IHandler")]' in the contract to '[RegisterAttribute("setForceDark", "(I)V", "GetSetForceDark_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebView.SetWebViewRenderProcessClient(Java.Util.Concurrent.IExecutor, Android.Webkit.WebViewRenderProcessClient)' changed from '[RegisterAttribute("setWebViewRenderProcessClient", "(Ljava/util/concurrent/Executor;Landroid/webkit/WebViewRenderProcessClient;)V", "GetSetWebViewRenderProcessClient_Ljava_util_concurrent_Executor_Landroid_webkit_WebViewRenderProcessClient_Handler")]' in the contract to '[RegisterAttribute("setWebViewRenderProcessClient", "(Ljava/util/concurrent/Executor;Landroid/webkit/WebViewRenderProcessClient;)V", "GetSetWebViewRenderProcessClient_Ljava_util_concurrent_Executor_Landroid_webkit_WebViewRenderProcessClient_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebView.WebViewRenderProcess.get()' changed from '[RegisterAttribute("getWebViewRenderProcess", "()Landroid/webkit/WebViewRenderProcess;", "GetGetWebViewRenderProcessHandler")]' in the contract to '[RegisterAttribute("getWebViewRenderProcess", "()Landroid/webkit/WebViewRenderProcess;", "GetGetWebViewRenderProcessHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebView.WebViewRenderProcessClient.get()' changed from '[RegisterAttribute("getWebViewRenderProcessClient", "()Landroid/webkit/WebViewRenderProcessClient;", "GetGetWebViewRenderProcessClientHandler")]' in the contract to '[RegisterAttribute("getWebViewRenderProcessClient", "()Landroid/webkit/WebViewRenderProcessClient;", "GetGetWebViewRenderProcessClientHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebView.WebViewRenderProcessClient.set(Android.Webkit.WebViewRenderProcessClient)' changed from '[RegisterAttribute("setWebViewRenderProcessClient", "(Landroid/webkit/WebViewRenderProcessClient;)V", "GetSetWebViewRenderProcessClient_Landroid_webkit_WebViewRenderProcessClient_Handler")]' in the contract to '[RegisterAttribute("setWebViewRenderProcessClient", "(Landroid/webkit/WebViewRenderProcessClient;)V", "GetSetWebViewRenderProcessClient_Landroid_webkit_WebViewRenderProcessClient_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebViewRenderProcess' changed from '[RegisterAttribute("android/webkit/WebViewRenderProcess", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/webkit/WebViewRenderProcess", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Webkit.WebViewRenderProcessClient' changed from '[RegisterAttribute("android/webkit/WebViewRenderProcessClient", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/webkit/WebViewRenderProcessClient", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsListView.BottomEdgeEffectColor.get()' changed from '[RegisterAttribute("getBottomEdgeEffectColor", "()I", "GetGetBottomEdgeEffectColorHandler")]' in the contract to '[RegisterAttribute("getBottomEdgeEffectColor", "()I", "GetGetBottomEdgeEffectColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsListView.IsDrawSelectorOnTop.get()' changed from '[RegisterAttribute("isDrawSelectorOnTop", "()Z", "GetIsDrawSelectorOnTopHandler")]' in the contract to '[RegisterAttribute("isDrawSelectorOnTop", "()Z", "GetIsDrawSelectorOnTopHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsListView.SetBottomEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setBottomEdgeEffectColor", "(I)V", "GetSetBottomEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setBottomEdgeEffectColor", "(I)V", "GetSetBottomEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsListView.SetEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setEdgeEffectColor", "(I)V", "GetSetEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setEdgeEffectColor", "(I)V", "GetSetEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsListView.SetTopEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setTopEdgeEffectColor", "(I)V", "GetSetTopEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setTopEdgeEffectColor", "(I)V", "GetSetTopEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsListView.TopEdgeEffectColor.get()' changed from '[RegisterAttribute("getTopEdgeEffectColor", "()I", "GetGetTopEdgeEffectColorHandler")]' in the contract to '[RegisterAttribute("getTopEdgeEffectColor", "()I", "GetGetTopEdgeEffectColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsSeekBar.ThumbTintBlendMode.get()' changed from '[RegisterAttribute("getThumbTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetThumbTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getThumbTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetThumbTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsSeekBar.ThumbTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setThumbTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetThumbTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setThumbTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetThumbTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsSeekBar.TickMarkTintBlendMode.get()' changed from '[RegisterAttribute("getTickMarkTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetTickMarkTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getTickMarkTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetTickMarkTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AbsSeekBar.TickMarkTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setTickMarkTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetTickMarkTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setTickMarkTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetTickMarkTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AutoCompleteTextView.InputMethodMode.get()' changed from '[RegisterAttribute("getInputMethodMode", "()I", "GetGetInputMethodModeHandler")]' in the contract to '[RegisterAttribute("getInputMethodMode", "()I", "GetGetInputMethodModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AutoCompleteTextView.InputMethodMode.set(Android.Widget.ListPopupWindowInputMethodMode)' changed from '[RegisterAttribute("setInputMethodMode", "(I)V", "GetSetInputMethodMode_IHandler")]' in the contract to '[RegisterAttribute("setInputMethodMode", "(I)V", "GetSetInputMethodMode_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.AutoCompleteTextView.RefreshAutoCompleteResults()' changed from '[RegisterAttribute("refreshAutoCompleteResults", "()V", "")]' in the contract to '[RegisterAttribute("refreshAutoCompleteResults", "()V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.CheckedTextView.CheckMarkTintBlendMode.get()' changed from '[RegisterAttribute("getCheckMarkTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetCheckMarkTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getCheckMarkTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetCheckMarkTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.CheckedTextView.CheckMarkTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setCheckMarkTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetCheckMarkTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setCheckMarkTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetCheckMarkTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.CompoundButton.ButtonTintBlendMode.get()' changed from '[RegisterAttribute("getButtonTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetButtonTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getButtonTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetButtonTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.CompoundButton.ButtonTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setButtonTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetButtonTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setButtonTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetButtonTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.EdgeEffect.DefaultBlendMode' changed from '[RegisterAttribute("DEFAULT_BLEND_MODE")]' in the contract to '[RegisterAttribute("DEFAULT_BLEND_MODE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.EdgeEffect.BlendMode.get()' changed from '[RegisterAttribute("getBlendMode", "()Landroid/graphics/BlendMode;", "GetGetBlendModeHandler")]' in the contract to '[RegisterAttribute("getBlendMode", "()Landroid/graphics/BlendMode;", "GetGetBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.EdgeEffect.BlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.HorizontalScrollView.LeftEdgeEffectColor.get()' changed from '[RegisterAttribute("getLeftEdgeEffectColor", "()I", "GetGetLeftEdgeEffectColorHandler")]' in the contract to '[RegisterAttribute("getLeftEdgeEffectColor", "()I", "GetGetLeftEdgeEffectColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.HorizontalScrollView.RightEdgeEffectColor.get()' changed from '[RegisterAttribute("getRightEdgeEffectColor", "()I", "GetGetRightEdgeEffectColorHandler")]' in the contract to '[RegisterAttribute("getRightEdgeEffectColor", "()I", "GetGetRightEdgeEffectColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.HorizontalScrollView.SetEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setEdgeEffectColor", "(I)V", "GetSetEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setEdgeEffectColor", "(I)V", "GetSetEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.HorizontalScrollView.SetLeftEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setLeftEdgeEffectColor", "(I)V", "GetSetLeftEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setLeftEdgeEffectColor", "(I)V", "GetSetLeftEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.HorizontalScrollView.SetRightEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setRightEdgeEffectColor", "(I)V", "GetSetRightEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setRightEdgeEffectColor", "(I)V", "GetSetRightEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ImageView.AnimateTransform(Android.Graphics.Matrix)' changed from '[RegisterAttribute("animateTransform", "(Landroid/graphics/Matrix;)V", "GetAnimateTransform_Landroid_graphics_Matrix_Handler")]' in the contract to '[RegisterAttribute("animateTransform", "(Landroid/graphics/Matrix;)V", "GetAnimateTransform_Landroid_graphics_Matrix_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ImageView.ImageTintBlendMode.get()' changed from '[RegisterAttribute("getImageTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetImageTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getImageTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetImageTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ImageView.ImageTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setImageTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetImageTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setImageTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetImageTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ListPopupWindow.EpicenterBounds.get()' changed from '[RegisterAttribute("getEpicenterBounds", "()Landroid/graphics/Rect;", "GetGetEpicenterBoundsHandler")]' in the contract to '[RegisterAttribute("getEpicenterBounds", "()Landroid/graphics/Rect;", "GetGetEpicenterBoundsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ListPopupWindow.EpicenterBounds.set(Android.Graphics.Rect)' changed from '[RegisterAttribute("setEpicenterBounds", "(Landroid/graphics/Rect;)V", "GetSetEpicenterBounds_Landroid_graphics_Rect_Handler")]' in the contract to '[RegisterAttribute("setEpicenterBounds", "(Landroid/graphics/Rect;)V", "GetSetEpicenterBounds_Landroid_graphics_Rect_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Widget.Magnifier.SourceBoundMaxInSurface' changed from '[RegisterAttribute("SOURCE_BOUND_MAX_IN_SURFACE")]' in the contract to '[RegisterAttribute("SOURCE_BOUND_MAX_IN_SURFACE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.Int32 Android.Widget.Magnifier.SourceBoundMaxVisible' changed from '[RegisterAttribute("SOURCE_BOUND_MAX_VISIBLE")]' in the contract to '[RegisterAttribute("SOURCE_BOUND_MAX_VISIBLE", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.CornerRadius.get()' changed from '[RegisterAttribute("getCornerRadius", "()F", "")]' in the contract to '[RegisterAttribute("getCornerRadius", "()F", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.DefaultHorizontalSourceToMagnifierOffset.get()' changed from '[RegisterAttribute("getDefaultHorizontalSourceToMagnifierOffset", "()I", "")]' in the contract to '[RegisterAttribute("getDefaultHorizontalSourceToMagnifierOffset", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.DefaultVerticalSourceToMagnifierOffset.get()' changed from '[RegisterAttribute("getDefaultVerticalSourceToMagnifierOffset", "()I", "")]' in the contract to '[RegisterAttribute("getDefaultVerticalSourceToMagnifierOffset", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.Elevation.get()' changed from '[RegisterAttribute("getElevation", "()F", "")]' in the contract to '[RegisterAttribute("getElevation", "()F", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.IsClippingEnabled.get()' changed from '[RegisterAttribute("isClippingEnabled", "()Z", "")]' in the contract to '[RegisterAttribute("isClippingEnabled", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.Overlay.get()' changed from '[RegisterAttribute("getOverlay", "()Landroid/graphics/drawable/Drawable;", "")]' in the contract to '[RegisterAttribute("getOverlay", "()Landroid/graphics/drawable/Drawable;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.Position.get()' changed from '[RegisterAttribute("getPosition", "()Landroid/graphics/Point;", "")]' in the contract to '[RegisterAttribute("getPosition", "()Landroid/graphics/Point;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.Show(System.Single, System.Single, System.Single, System.Single)' changed from '[RegisterAttribute("show", "(FFFF)V", "")]' in the contract to '[RegisterAttribute("show", "(FFFF)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.SourceHeight.get()' changed from '[RegisterAttribute("getSourceHeight", "()I", "")]' in the contract to '[RegisterAttribute("getSourceHeight", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.SourcePosition.get()' changed from '[RegisterAttribute("getSourcePosition", "()Landroid/graphics/Point;", "")]' in the contract to '[RegisterAttribute("getSourcePosition", "()Landroid/graphics/Point;", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.SourceWidth.get()' changed from '[RegisterAttribute("getSourceWidth", "()I", "")]' in the contract to '[RegisterAttribute("getSourceWidth", "()I", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.Zoom.set(System.Single)' changed from '[RegisterAttribute("setZoom", "(F)V", "")]' in the contract to '[RegisterAttribute("setZoom", "(F)V", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Magnifier.Builder' changed from '[RegisterAttribute("android/widget/Magnifier$Builder", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/widget/Magnifier$Builder", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.NumberPicker.SelectionDividerHeight.get()' changed from '[RegisterAttribute("getSelectionDividerHeight", "()I", "GetGetSelectionDividerHeightHandler")]' in the contract to '[RegisterAttribute("getSelectionDividerHeight", "()I", "GetGetSelectionDividerHeightHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.NumberPicker.SelectionDividerHeight.set(System.Int32)' changed from '[RegisterAttribute("setSelectionDividerHeight", "(I)V", "GetSetSelectionDividerHeight_IHandler")]' in the contract to '[RegisterAttribute("setSelectionDividerHeight", "(I)V", "GetSetSelectionDividerHeight_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.NumberPicker.SetTextColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setTextColor", "(I)V", "GetSetTextColor_IHandler")]' in the contract to '[RegisterAttribute("setTextColor", "(I)V", "GetSetTextColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.NumberPicker.TextColor.get()' changed from '[RegisterAttribute("getTextColor", "()I", "GetGetTextColorHandler")]' in the contract to '[RegisterAttribute("getTextColor", "()I", "GetGetTextColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.NumberPicker.TextSize.get()' changed from '[RegisterAttribute("getTextSize", "()F", "GetGetTextSizeHandler")]' in the contract to '[RegisterAttribute("getTextSize", "()F", "GetGetTextSizeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.NumberPicker.TextSize.set(System.Single)' changed from '[RegisterAttribute("setTextSize", "(F)V", "GetSetTextSize_FHandler")]' in the contract to '[RegisterAttribute("setTextSize", "(F)V", "GetSetTextSize_FHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupMenu.SetForceShowIcon(System.Boolean)' changed from '[RegisterAttribute("setForceShowIcon", "(Z)V", "GetSetForceShowIcon_ZHandler")]' in the contract to '[RegisterAttribute("setForceShowIcon", "(Z)V", "GetSetForceShowIcon_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.EpicenterBounds.get()' changed from '[RegisterAttribute("getEpicenterBounds", "()Landroid/graphics/Rect;", "GetGetEpicenterBoundsHandler")]' in the contract to '[RegisterAttribute("getEpicenterBounds", "()Landroid/graphics/Rect;", "GetGetEpicenterBoundsHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.EpicenterBounds.set(Android.Graphics.Rect)' changed from '[RegisterAttribute("setEpicenterBounds", "(Landroid/graphics/Rect;)V", "GetSetEpicenterBounds_Landroid_graphics_Rect_Handler")]' in the contract to '[RegisterAttribute("setEpicenterBounds", "(Landroid/graphics/Rect;)V", "GetSetEpicenterBounds_Landroid_graphics_Rect_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.IsClippedToScreen.get()' changed from '[RegisterAttribute("isClippedToScreen", "()Z", "GetIsClippedToScreenHandler")]' in the contract to '[RegisterAttribute("isClippedToScreen", "()Z", "GetIsClippedToScreenHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.IsClippedToScreen.set(System.Boolean)' changed from '[RegisterAttribute("setIsClippedToScreen", "(Z)V", "GetSetIsClippedToScreen_ZHandler")]' in the contract to '[RegisterAttribute("setIsClippedToScreen", "(Z)V", "GetSetIsClippedToScreen_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.IsLaidOutInScreen.get()' changed from '[RegisterAttribute("isLaidOutInScreen", "()Z", "GetIsLaidOutInScreenHandler")]' in the contract to '[RegisterAttribute("isLaidOutInScreen", "()Z", "GetIsLaidOutInScreenHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.IsLaidOutInScreen.set(System.Boolean)' changed from '[RegisterAttribute("setIsLaidOutInScreen", "(Z)V", "GetSetIsLaidOutInScreen_ZHandler")]' in the contract to '[RegisterAttribute("setIsLaidOutInScreen", "(Z)V", "GetSetIsLaidOutInScreen_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.TouchModal.get()' changed from '[RegisterAttribute("isTouchModal", "()Z", "GetIsTouchModalHandler")]' in the contract to '[RegisterAttribute("isTouchModal", "()Z", "GetIsTouchModalHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.PopupWindow.TouchModal.set(System.Boolean)' changed from '[RegisterAttribute("setTouchModal", "(Z)V", "GetSetTouchModal_ZHandler")]' in the contract to '[RegisterAttribute("setTouchModal", "(Z)V", "GetSetTouchModal_ZHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.CurrentDrawable.get()' changed from '[RegisterAttribute("getCurrentDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetCurrentDrawableHandler")]' in the contract to '[RegisterAttribute("getCurrentDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetCurrentDrawableHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.IndeterminateTintBlendMode.get()' changed from '[RegisterAttribute("getIndeterminateTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetIndeterminateTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getIndeterminateTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetIndeterminateTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.IndeterminateTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setIndeterminateTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetIndeterminateTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setIndeterminateTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetIndeterminateTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MaxHeight.get()' changed from '[RegisterAttribute("getMaxHeight", "()I", "GetGetMaxHeightHandler")]' in the contract to '[RegisterAttribute("getMaxHeight", "()I", "GetGetMaxHeightHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MaxHeight.set(System.Int32)' changed from '[RegisterAttribute("setMaxHeight", "(I)V", "GetSetMaxHeight_IHandler")]' in the contract to '[RegisterAttribute("setMaxHeight", "(I)V", "GetSetMaxHeight_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MaxWidth.get()' changed from '[RegisterAttribute("getMaxWidth", "()I", "GetGetMaxWidthHandler")]' in the contract to '[RegisterAttribute("getMaxWidth", "()I", "GetGetMaxWidthHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MaxWidth.set(System.Int32)' changed from '[RegisterAttribute("setMaxWidth", "(I)V", "GetSetMaxWidth_IHandler")]' in the contract to '[RegisterAttribute("setMaxWidth", "(I)V", "GetSetMaxWidth_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MinHeight.get()' changed from '[RegisterAttribute("getMinHeight", "()I", "GetGetMinHeightHandler")]' in the contract to '[RegisterAttribute("getMinHeight", "()I", "GetGetMinHeightHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MinHeight.set(System.Int32)' changed from '[RegisterAttribute("setMinHeight", "(I)V", "GetSetMinHeight_IHandler")]' in the contract to '[RegisterAttribute("setMinHeight", "(I)V", "GetSetMinHeight_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MinWidth.get()' changed from '[RegisterAttribute("getMinWidth", "()I", "GetGetMinWidthHandler")]' in the contract to '[RegisterAttribute("getMinWidth", "()I", "GetGetMinWidthHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.MinWidth.set(System.Int32)' changed from '[RegisterAttribute("setMinWidth", "(I)V", "GetSetMinWidth_IHandler")]' in the contract to '[RegisterAttribute("setMinWidth", "(I)V", "GetSetMinWidth_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.ProgressBackgroundTintBlendMode.get()' changed from '[RegisterAttribute("getProgressBackgroundTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetProgressBackgroundTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getProgressBackgroundTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetProgressBackgroundTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.ProgressBackgroundTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setProgressBackgroundTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetProgressBackgroundTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setProgressBackgroundTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetProgressBackgroundTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.ProgressTintBlendMode.get()' changed from '[RegisterAttribute("getProgressTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetProgressTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getProgressTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetProgressTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.ProgressTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setProgressTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetProgressTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setProgressTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetProgressTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.SecondaryProgressTintBlendMode.get()' changed from '[RegisterAttribute("getSecondaryProgressTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetSecondaryProgressTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getSecondaryProgressTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetSecondaryProgressTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ProgressBar.SecondaryProgressTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setSecondaryProgressTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetSecondaryProgressTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setSecondaryProgressTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetSecondaryProgressTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.RelativeLayout.IgnoreGravity.get()' changed from '[RegisterAttribute("getIgnoreGravity", "()I", "GetGetIgnoreGravityHandler")]' in the contract to '[RegisterAttribute("getIgnoreGravity", "()I", "GetGetIgnoreGravityHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'System.String Android.Widget.RemoteViews.ExtraSharedElementBounds' changed from '[RegisterAttribute("EXTRA_SHARED_ELEMENT_BOUNDS")]' in the contract to '[RegisterAttribute("EXTRA_SHARED_ELEMENT_BOUNDS", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.RemoteViews.SetLightBackgroundLayoutId(System.Int32)' changed from '[RegisterAttribute("setLightBackgroundLayoutId", "(I)V", "GetSetLightBackgroundLayoutId_IHandler")]' in the contract to '[RegisterAttribute("setLightBackgroundLayoutId", "(I)V", "GetSetLightBackgroundLayoutId_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.RemoteViews.SetOnClickResponse(System.Int32, Android.Widget.RemoteViews.RemoteResponse)' changed from '[RegisterAttribute("setOnClickResponse", "(ILandroid/widget/RemoteViews$RemoteResponse;)V", "GetSetOnClickResponse_ILandroid_widget_RemoteViews_RemoteResponse_Handler")]' in the contract to '[RegisterAttribute("setOnClickResponse", "(ILandroid/widget/RemoteViews$RemoteResponse;)V", "GetSetOnClickResponse_ILandroid_widget_RemoteViews_RemoteResponse_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.RemoteViews.RemoteResponse' changed from '[RegisterAttribute("android/widget/RemoteViews$RemoteResponse", DoNotGenerateAcw=true)]' in the contract to '[RegisterAttribute("android/widget/RemoteViews$RemoteResponse", DoNotGenerateAcw=true, ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ScrollView.BottomEdgeEffectColor.get()' changed from '[RegisterAttribute("getBottomEdgeEffectColor", "()I", "GetGetBottomEdgeEffectColorHandler")]' in the contract to '[RegisterAttribute("getBottomEdgeEffectColor", "()I", "GetGetBottomEdgeEffectColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ScrollView.ScrollToDescendant(Android.Views.View)' changed from '[RegisterAttribute("scrollToDescendant", "(Landroid/view/View;)V", "GetScrollToDescendant_Landroid_view_View_Handler")]' in the contract to '[RegisterAttribute("scrollToDescendant", "(Landroid/view/View;)V", "GetScrollToDescendant_Landroid_view_View_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ScrollView.SetBottomEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setBottomEdgeEffectColor", "(I)V", "GetSetBottomEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setBottomEdgeEffectColor", "(I)V", "GetSetBottomEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ScrollView.SetEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setEdgeEffectColor", "(I)V", "GetSetEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setEdgeEffectColor", "(I)V", "GetSetEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ScrollView.SetTopEdgeEffectColor(Android.Graphics.Color)' changed from '[RegisterAttribute("setTopEdgeEffectColor", "(I)V", "GetSetTopEdgeEffectColor_IHandler")]' in the contract to '[RegisterAttribute("setTopEdgeEffectColor", "(I)V", "GetSetTopEdgeEffectColor_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ScrollView.TopEdgeEffectColor.get()' changed from '[RegisterAttribute("getTopEdgeEffectColor", "()I", "GetGetTopEdgeEffectColorHandler")]' in the contract to '[RegisterAttribute("getTopEdgeEffectColor", "()I", "GetGetTopEdgeEffectColorHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.SearchView.IsIconifiedByDefault.get()' changed from '[RegisterAttribute("isIconifiedByDefault", "()Z", "GetIsIconifiedByDefaultHandler")]' in the contract to '[RegisterAttribute("isIconifiedByDefault", "()Z", "GetIsIconifiedByDefaultHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Switch.ThumbTintBlendMode.get()' changed from '[RegisterAttribute("getThumbTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetThumbTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getThumbTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetThumbTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Switch.ThumbTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setThumbTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetThumbTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setThumbTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetThumbTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Switch.TrackTintBlendMode.get()' changed from '[RegisterAttribute("getTrackTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetTrackTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getTrackTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetTrackTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Switch.TrackTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setTrackTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetTrackTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setTrackTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetTrackTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.CompoundDrawableTintBlendMode.get()' changed from '[RegisterAttribute("getCompoundDrawableTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetCompoundDrawableTintBlendModeHandler")]' in the contract to '[RegisterAttribute("getCompoundDrawableTintBlendMode", "()Landroid/graphics/BlendMode;", "GetGetCompoundDrawableTintBlendModeHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.CompoundDrawableTintBlendMode.set(Android.Graphics.BlendMode)' changed from '[RegisterAttribute("setCompoundDrawableTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetCompoundDrawableTintBlendMode_Landroid_graphics_BlendMode_Handler")]' in the contract to '[RegisterAttribute("setCompoundDrawableTintBlendMode", "(Landroid/graphics/BlendMode;)V", "GetSetCompoundDrawableTintBlendMode_Landroid_graphics_BlendMode_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.IsHorizontallyScrollable.get()' changed from '[RegisterAttribute("isHorizontallyScrollable", "()Z", "")]' in the contract to '[RegisterAttribute("isHorizontallyScrollable", "()Z", "", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.IsSingleLine.get()' changed from '[RegisterAttribute("isSingleLine", "()Z", "GetIsSingleLineHandler")]' in the contract to '[RegisterAttribute("isSingleLine", "()Z", "GetIsSingleLineHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.SetTextCursorDrawable(System.Int32)' changed from '[RegisterAttribute("setTextCursorDrawable", "(I)V", "GetSetTextCursorDrawable_IHandler")]' in the contract to '[RegisterAttribute("setTextCursorDrawable", "(I)V", "GetSetTextCursorDrawable_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.SetTextSelectHandle(System.Int32)' changed from '[RegisterAttribute("setTextSelectHandle", "(I)V", "GetSetTextSelectHandle_IHandler")]' in the contract to '[RegisterAttribute("setTextSelectHandle", "(I)V", "GetSetTextSelectHandle_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.SetTextSelectHandleLeft(System.Int32)' changed from '[RegisterAttribute("setTextSelectHandleLeft", "(I)V", "GetSetTextSelectHandleLeft_IHandler")]' in the contract to '[RegisterAttribute("setTextSelectHandleLeft", "(I)V", "GetSetTextSelectHandleLeft_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.SetTextSelectHandleRight(System.Int32)' changed from '[RegisterAttribute("setTextSelectHandleRight", "(I)V", "GetSetTextSelectHandleRight_IHandler")]' in the contract to '[RegisterAttribute("setTextSelectHandleRight", "(I)V", "GetSetTextSelectHandleRight_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextCursorDrawable.get()' changed from '[RegisterAttribute("getTextCursorDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetTextCursorDrawableHandler")]' in the contract to '[RegisterAttribute("getTextCursorDrawable", "()Landroid/graphics/drawable/Drawable;", "GetGetTextCursorDrawableHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextCursorDrawable.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setTextCursorDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextCursorDrawable_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setTextCursorDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextCursorDrawable_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextDirectionHeuristic.get()' changed from '[RegisterAttribute("getTextDirectionHeuristic", "()Landroid/text/TextDirectionHeuristic;", "GetGetTextDirectionHeuristicHandler")]' in the contract to '[RegisterAttribute("getTextDirectionHeuristic", "()Landroid/text/TextDirectionHeuristic;", "GetGetTextDirectionHeuristicHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextSelectHandle.get()' changed from '[RegisterAttribute("getTextSelectHandle", "()Landroid/graphics/drawable/Drawable;", "GetGetTextSelectHandleHandler")]' in the contract to '[RegisterAttribute("getTextSelectHandle", "()Landroid/graphics/drawable/Drawable;", "GetGetTextSelectHandleHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextSelectHandle.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setTextSelectHandle", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextSelectHandle_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setTextSelectHandle", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextSelectHandle_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextSelectHandleLeft.get()' changed from '[RegisterAttribute("getTextSelectHandleLeft", "()Landroid/graphics/drawable/Drawable;", "GetGetTextSelectHandleLeftHandler")]' in the contract to '[RegisterAttribute("getTextSelectHandleLeft", "()Landroid/graphics/drawable/Drawable;", "GetGetTextSelectHandleLeftHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextSelectHandleLeft.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setTextSelectHandleLeft", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextSelectHandleLeft_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setTextSelectHandleLeft", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextSelectHandleLeft_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextSelectHandleRight.get()' changed from '[RegisterAttribute("getTextSelectHandleRight", "()Landroid/graphics/drawable/Drawable;", "GetGetTextSelectHandleRightHandler")]' in the contract to '[RegisterAttribute("getTextSelectHandleRight", "()Landroid/graphics/drawable/Drawable;", "GetGetTextSelectHandleRightHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.TextView.TextSelectHandleRight.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setTextSelectHandleRight", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextSelectHandleRight_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setTextSelectHandleRight", "(Landroid/graphics/drawable/Drawable;)V", "GetSetTextSelectHandleRight_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ToggleButton.DisabledAlpha.get()' changed from '[RegisterAttribute("getDisabledAlpha", "()F", "GetGetDisabledAlphaHandler")]' in the contract to '[RegisterAttribute("getDisabledAlpha", "()F", "GetGetDisabledAlphaHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Toolbar.CollapseContentDescriptionFormatted.get()' changed from '[RegisterAttribute("getCollapseContentDescription", "()Ljava/lang/CharSequence;", "GetGetCollapseContentDescriptionHandler")]' in the contract to '[RegisterAttribute("getCollapseContentDescription", "()Ljava/lang/CharSequence;", "GetGetCollapseContentDescriptionHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Toolbar.CollapseContentDescriptionFormatted.set(Java.Lang.ICharSequence)' changed from '[RegisterAttribute("setCollapseContentDescription", "(Ljava/lang/CharSequence;)V", "GetSetCollapseContentDescription_Ljava_lang_CharSequence_Handler")]' in the contract to '[RegisterAttribute("setCollapseContentDescription", "(Ljava/lang/CharSequence;)V", "GetSetCollapseContentDescription_Ljava_lang_CharSequence_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Toolbar.CollapseIcon.get()' changed from '[RegisterAttribute("getCollapseIcon", "()Landroid/graphics/drawable/Drawable;", "GetGetCollapseIconHandler")]' in the contract to '[RegisterAttribute("getCollapseIcon", "()Landroid/graphics/drawable/Drawable;", "GetGetCollapseIconHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Toolbar.CollapseIcon.set(Android.Graphics.Drawables.Drawable)' changed from '[RegisterAttribute("setCollapseIcon", "(Landroid/graphics/drawable/Drawable;)V", "GetSetCollapseIcon_Landroid_graphics_drawable_Drawable_Handler")]' in the contract to '[RegisterAttribute("setCollapseIcon", "(Landroid/graphics/drawable/Drawable;)V", "GetSetCollapseIcon_Landroid_graphics_drawable_Drawable_Handler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Toolbar.SetCollapseContentDescription(System.Int32)' changed from '[RegisterAttribute("setCollapseContentDescription", "(I)V", "GetSetCollapseContentDescription_IHandler")]' in the contract to '[RegisterAttribute("setCollapseContentDescription", "(I)V", "GetSetCollapseContentDescription_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.Toolbar.SetCollapseIcon(System.Int32)' changed from '[RegisterAttribute("setCollapseIcon", "(I)V", "GetSetCollapseIcon_IHandler")]' in the contract to '[RegisterAttribute("setCollapseIcon", "(I)V", "GetSetCollapseIcon_IHandler", ApiSince=29)]' in the implementation. +CannotChangeAttribute : Attribute 'Android.Runtime.RegisterAttribute' on 'Android.Widget.ViewFlipper.FlipInterval.get()' changed from '[RegisterAttribute("getFlipInterval", "()I", "GetGetFlipIntervalHandler")]' in the contract to '[RegisterAttribute("getFlipInterval", "()I", "GetGetFlipIntervalHandler", ApiSince=29)]' in the implementation. \ No newline at end of file