dotnet / maui

.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
https://dot.net/maui
MIT License
22.21k stars 1.75k forks source link

Why Error compiling Android/Windows (Release) Debug Model Compiling NoError #8815

Closed gsgoodluck closed 2 years ago

gsgoodluck commented 2 years ago

Description

XAGJS7004 System.ArgumentException: [已添加了具有相同键的项。] 在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) 在 System.Collections.Generic.Dictionary2.Insert(TKey key, TValue value, Boolean add) 在 Xamarin.Android.Tasks.TypeMapGenerator.GenerateRelease(Boolean skipJniAddNativeMethodRegistrationAttributeScan, List1 javaTypes, String outputDirectory, ApplicationConfigTaskState appConfState) 在 Xamarin.Android.Tasks.GenerateJavaStubs.WriteTypeMappings(List`1 types, TypeDefinitionCache cache) 在 Xamarin.Android.Tasks.GenerateJavaStubs.Run(DirectoryAssemblyResolver res) 在 Xamarin.Android.Tasks.GenerateJavaStubs.RunTask() 在 Microsoft.Android.Build.Tasks.AndroidTask.Execute() 位置 /Users/runner/work/1/s/xamarin-android/external/xamarin-android-tools/src/Microsoft.Android.Build.BaseTasks/AndroidTask.cs:行号 17 MES C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets 1442

Steps to Reproduce

User Prism.Maui.Template https://github.com/PrismLibrary/Prism.Maui/issues/91

Android Setting

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application android:allowBackup="true" android:icon="@mipmap/appicon" android:roundIcon="@mipmap/appicon_round" android:usesCleartextTraffic="true" android:supportsRtl="true"></application>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>

Version with bug

Unknown/Other (please specify)

Last version that worked well

Unknown/Other

Affected platforms

Android, Windows

Affected platform versions

net6.0-android;net6.0-ios;net6.0-maccatalyst

Did you find any workaround?

No

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFrameworks>net6.0-android;net6.0-ios;net6.0-maccatalyst</TargetFrameworks>
    <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041.0</TargetFrameworks>
    <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
    <!-- <TargetFrameworks>$(TargetFrameworks);net6.0-tizen</TargetFrameworks> -->
    <OutputType>Exe</OutputType>
    <RootNamespace>MES</RootNamespace>
    <UseMaui>true</UseMaui>
    <SingleProject>true</SingleProject>
    <ImplicitUsings>enable</ImplicitUsings>
    <AndroidPackageFormat>apk</AndroidPackageFormat>
    <!-- Display name -->
    <ApplicationTitle>MES</ApplicationTitle>

    <!-- App Identifier -->
    <ApplicationId>com.companyname.mes</ApplicationId>
    <ApplicationIdGuid>A4802029-58D4-4CC6-A1C7-3AD7AB001589</ApplicationIdGuid>

    <!-- Versions -->
    <ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
    <ApplicationVersion>1</ApplicationVersion>

    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
    <TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
    <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
  </PropertyGroup>

  <ItemGroup>
    <!-- App Icon -->
    <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#FFFFFF" />

    <!-- Splash Screen -->
    <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#FFFFFF" />

    <!-- Images -->
    <MauiImage Include="Resources\Images\*" />

    <!-- Custom Fonts -->
    <MauiFont Include="Resources\Fonts\*" />

    <!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
    <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\..\MES.Core\MES.Core.csproj" />
    <ProjectReference Include="..\..\MES.Models\MES.Models.csproj" />
    <ProjectReference Include="..\..\MES.Production\MES.Production.csproj" />
    <ProjectReference Include="..\..\MES.System\MES.System.csproj" />
  </ItemGroup>

  <ItemGroup>
    <MauiXaml Update="Views\Login.xaml">
      <Generator>MSBuild:Compile</Generator>
    </MauiXaml>
    <MauiXaml Update="Views\MainMenu.xaml">
      <Generator>MSBuild:Compile</Generator>
    </MauiXaml>
  </ItemGroup>

  <ItemGroup>
    <None Update="Platforms\Android\AndroidManifest.xml">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>

</Project>

Relevant log output

已启动生成...
1>------ 已启动生成: 项目: MES.Core, 配置: Release Any CPU ------
1>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy
1>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs
1>E:\MAUI\PrismMaui\MES\MES.Core\UserManagement\UserManagementService.cs(16,7,16,25): warning CS0105: “MES.UserManagement”的 using 指令以前在此命名空间中出现过
1>E:\MAUI\PrismMaui\MES\MES.Core\UserManagement\UserManagementService.cs(24,19,24,21): warning CS0108: “UserManagementService.DB”隐藏继承的成员“ServiceBase.DB”。如果是有意隐藏,请使用关键字 new。
1>E:\MAUI\PrismMaui\MES\MES.Core\UserManagement\Authorization.cs(170,21,170,23): warning CS0168: 声明了变量“ex”,但从未使用过
1>E:\MAUI\PrismMaui\MES\MES.Core\DataBaseManager\DataBase.cs(66,30,66,32): warning CS0168: 声明了变量“ex”,但从未使用过
1>E:\MAUI\PrismMaui\MES\MES.Core\DataBaseManager\DataBase.cs(506,25,506,39): warning CS0472: 由于“int”类型的值永不等于“int?”类型的 "null",该表达式的结果始终为“true”
1>E:\MAUI\PrismMaui\MES\MES.Core\DataBaseManager\DataBase.cs(495,20,495,23): warning CS0219: 变量“Key”已被赋值,但从未使用过它的值
1>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Dependencies”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs
1>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs
1>已完成生成项目“MES.System.csproj”的操作。
1>MES.Core -> E:\MAUI\PrismMaui\MES\MES.Core\bin\Release\net6.0\MES.Core.dll
1>已完成生成项目“MES.Core.csproj”的操作。
2>------ 已启动生成: 项目: MES.Production, 配置: Release Any CPU ------
2>MES.Production -> E:\MAUI\PrismMaui\MES\MES.Production\bin\Release\net6.0\MES.Production.dll
3>------ 已启动生成: 项目: MES, 配置: Release Any CPU ------
3>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy
3>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy
3>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count”
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count”
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count”
3>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Dependencies”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs
3>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs
3>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs
3>已完成生成项目“MES.Core.csproj”的操作。
3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Release\net6.0-ios\iossimulator-x64\MES.dll
3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Release\net6.0-android\MES.dll
3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Release\net6.0-maccatalyst\maccatalyst-x64\MES.dll
3>Optimizing assemblies for size may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
3>Optimizing assemblies for size. This process might take a while.
3>Optimizing assemblies for size may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
3>Optimizing assemblies for size. This process might take a while.
3>Optimizing assemblies for size may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
3>Optimizing assemblies for size. This process might take a while.
3>Optimizing assemblies for size may change the behavior of the app. Be sure to test after publishing. See: https://aka.ms/dotnet-illink
3>Optimizing assemblies for size. This process might take a while.
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count”
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。
3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count”
3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Release\net6.0-windows10.0.19041.0\win10-x64\MES.dll
3>[1/148] Dapper.dll -> Dapper.dll.so
3>[1/148] Dapper.dll -> Dapper.dll.so
3>[1/148] Dapper.dll -> Dapper.dll.so
3>[2/148] Xamarin.AndroidX.CoordinatorLayout.dll -> Xamarin.AndroidX.CoordinatorLayout.dll.so
3>[3/148] System.Threading.Thread.dll -> System.Threading.Thread.dll.so
3>[4/148] Java.Interop.dll -> Java.Interop.dll.so
3>[5/148] System.Configuration.ConfigurationManager.dll -> System.Configuration.ConfigurationManager.dll.so
3>[6/148] Microsoft.AspNetCore.SignalR.Common.dll -> Microsoft.AspNetCore.SignalR.Common.dll.so
3>[7/148] System.Net.Quic.dll -> System.Net.Quic.dll.so
3>[8/148] Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll -> Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll.so
3>[9/148] System.Security.Cryptography.Primitives.dll -> System.Security.Cryptography.Primitives.dll.so
3>[10/148] System.IO.Pipes.dll -> System.IO.Pipes.dll.so
3>[11/148] System.Numerics.Vectors.dll -> System.Numerics.Vectors.dll.so
3>[12/148] System.Collections.Specialized.dll -> System.Collections.Specialized.dll.so
3>[13/148] System.Diagnostics.DiagnosticSource.dll -> System.Diagnostics.DiagnosticSource.dll.so
3>[14/148] Xamarin.AndroidX.ViewPager.dll -> Xamarin.AndroidX.ViewPager.dll.so
3>[15/148] System.Runtime.InteropServices.RuntimeInformation.dll -> System.Runtime.InteropServices.RuntimeInformation.dll.so
3>[16/148] Microsoft.Extensions.Options.dll -> Microsoft.Extensions.Options.dll.so
3>[17/148] Microsoft.AspNetCore.SignalR.Protocols.Json.dll -> Microsoft.AspNetCore.SignalR.Protocols.Json.dll.so
3>[18/148] Xamarin.AndroidX.Loader.dll -> Xamarin.AndroidX.Loader.dll.so
3>[2/148] DryIoc.dll -> DryIoc.dll.so
3>[2/148] DryIoc.dll -> DryIoc.dll.so
3>[19/148] System.Data.SqlClient.dll -> System.Data.SqlClient.dll.so
3>[20/148] System.Security.Cryptography.X509Certificates.dll -> System.Security.Cryptography.X509Certificates.dll.so
3>[21/148] DryIoc.dll -> DryIoc.dll.so
3>[3/148] Humanizer.dll -> Humanizer.dll.so
3>[3/148] Humanizer.dll -> Humanizer.dll.so
3>[4/148] log4net.dll -> log4net.dll.so
3>[22/148] Xamarin.AndroidX.Navigation.Common.dll -> Xamarin.AndroidX.Navigation.Common.dll.so
3>[23/148] Microsoft.Extensions.Configuration.dll -> Microsoft.Extensions.Configuration.dll.so
3>[24/148] System.IO.Pipelines.dll -> System.IO.Pipelines.dll.so
3>[25/148] System.ObjectModel.dll -> System.ObjectModel.dll.so
3>[26/148] Xamarin.AndroidX.ViewPager2.dll -> Xamarin.AndroidX.ViewPager2.dll.so
3>[27/148] Microsoft.Extensions.Primitives.dll -> Microsoft.Extensions.Primitives.dll.so
3>[28/148] System.Collections.dll -> System.Collections.dll.so
3>[29/148] System.Net.Requests.dll -> System.Net.Requests.dll.so
3>[30/148] System.Diagnostics.Process.dll -> System.Diagnostics.Process.dll.so
3>[31/148] System.Linq.Expressions.dll -> System.Linq.Expressions.dll.so
3>[32/148] System.Security.Principal.Windows.dll -> System.Security.Principal.Windows.dll.so
3>[33/148] System.Runtime.Numerics.dll -> System.Runtime.Numerics.dll.so
3>[34/148] System.Threading.ThreadPool.dll -> System.Threading.ThreadPool.dll.so
3>[35/148] Xamarin.AndroidX.Core.dll -> Xamarin.AndroidX.Core.dll.so
3>[36/148] Humanizer.dll -> Humanizer.dll.so
3>[4/148] log4net.dll -> log4net.dll.so
3>[37/148] Mono.Android.dll -> Mono.Android.dll.so
3>[5/148] Microsoft.AspNetCore.Connections.Abstractions.dll -> Microsoft.AspNetCore.Connections.Abstractions.dll.so
3>[5/148] Microsoft.AspNetCore.Connections.Abstractions.dll -> Microsoft.AspNetCore.Connections.Abstractions.dll.so
3>[38/148] Xamarin.AndroidX.Navigation.Fragment.dll -> Xamarin.AndroidX.Navigation.Fragment.dll.so
3>[39/148] Microsoft.Extensions.Configuration.Abstractions.dll -> Microsoft.Extensions.Configuration.Abstractions.dll.so
3>[40/148] log4net.dll -> log4net.dll.so
3>[6/148] Microsoft.AspNetCore.Http.Connections.Client.dll -> Microsoft.AspNetCore.Http.Connections.Client.dll.so
3>[6/148] Microsoft.AspNetCore.Http.Connections.Client.dll -> Microsoft.AspNetCore.Http.Connections.Client.dll.so
3>[1/148] Dapper.dll -> Dapper.dll.so
3>[41/148] Xamarin.AndroidX.Navigation.Runtime.dll -> Xamarin.AndroidX.Navigation.Runtime.dll.so
3>[7/148] Microsoft.AspNetCore.Http.Connections.Common.dll -> Microsoft.AspNetCore.Http.Connections.Common.dll.so
3>[7/148] Microsoft.AspNetCore.Http.Connections.Common.dll -> Microsoft.AspNetCore.Http.Connections.Common.dll.so
3>[42/148] Microsoft.AspNetCore.Connections.Abstractions.dll -> Microsoft.AspNetCore.Connections.Abstractions.dll.so
3>[43/148] Xamarin.AndroidX.Navigation.UI.dll -> Xamarin.AndroidX.Navigation.UI.dll.so
3>[44/148] System.Security.Permissions.dll -> System.Security.Permissions.dll.so
3>[45/148] System.Text.Encoding.CodePages.dll -> System.Text.Encoding.CodePages.dll.so
3>[46/148] Xamarin.Google.Android.Material.dll -> Xamarin.Google.Android.Material.dll.so
3>[47/148] Microsoft.Maui.Graphics.dll -> Microsoft.Maui.Graphics.dll.so
3>[48/148] System.Runtime.Serialization.Formatters.dll -> System.Runtime.Serialization.Formatters.dll.so
3>[49/148] System.ComponentModel.Annotations.dll -> System.ComponentModel.Annotations.dll.so
3>[50/148] System.Linq.dll -> System.Linq.dll.so
3>[51/148] System.Diagnostics.TraceSource.dll -> System.Diagnostics.TraceSource.dll.so
3>[52/148] System.Private.Uri.dll -> System.Private.Uri.dll.so
3>[53/148] System.Net.Security.dll -> System.Net.Security.dll.so
3>[54/148] System.Threading.dll -> System.Threading.dll.so
3>[55/148] Microsoft.Extensions.DependencyInjection.dll -> Microsoft.Extensions.DependencyInjection.dll.so
3>[8/148] Microsoft.AspNetCore.SignalR.Client.dll -> Microsoft.AspNetCore.SignalR.Client.dll.so
3>[8/148] Microsoft.AspNetCore.SignalR.Client.dll -> Microsoft.AspNetCore.SignalR.Client.dll.so
3>[9/148] Microsoft.AspNetCore.SignalR.Client.Core.dll -> Microsoft.AspNetCore.SignalR.Client.Core.dll.so
3>[9/148] Microsoft.AspNetCore.SignalR.Client.Core.dll -> Microsoft.AspNetCore.SignalR.Client.Core.dll.so
3>[56/148] Microsoft.Extensions.DependencyInjection.Abstractions.dll -> Microsoft.Extensions.DependencyInjection.Abstractions.dll.so
3>[57/148] Xamarin.AndroidX.RecyclerView.dll -> Xamarin.AndroidX.RecyclerView.dll.so
3>[58/148] Xamarin.AndroidX.Activity.dll -> Xamarin.AndroidX.Activity.dll.so
3>[59/148] Microsoft.Maui.dll -> Microsoft.Maui.dll.so
3>[60/148] Xamarin.Kotlin.StdLib.dll -> Xamarin.Kotlin.StdLib.dll.so
3>[61/148] System.ComponentModel.EventBasedAsync.dll -> System.ComponentModel.EventBasedAsync.dll.so
3>[62/148] System.Transactions.Local.dll -> System.Transactions.Local.dll.so
3>[63/148] System.Memory.dll -> System.Memory.dll.so
3>[64/148] System.Private.Xml.Linq.dll -> System.Private.Xml.Linq.dll.so
3>[65/148] System.Drawing.Primitives.dll -> System.Drawing.Primitives.dll.so
3>[66/148] Microsoft.AspNetCore.Http.Connections.Client.dll -> Microsoft.AspNetCore.Http.Connections.Client.dll.so
3>[67/148] System.Runtime.dll -> System.Runtime.dll.so
3>[68/148] System.Text.Encoding.Extensions.dll -> System.Text.Encoding.Extensions.dll.so
3>[69/148] System.Net.ServicePoint.dll -> System.Net.ServicePoint.dll.so
3>[70/148] MySqlConnector.dll -> MySqlConnector.dll.so
3>[71/148] Xamarin.AndroidX.CursorAdapter.dll -> Xamarin.AndroidX.CursorAdapter.dll.so
3>[10/148] Microsoft.AspNetCore.SignalR.Common.dll -> Microsoft.AspNetCore.SignalR.Common.dll.so
3>[10/148] Microsoft.AspNetCore.SignalR.Common.dll -> Microsoft.AspNetCore.SignalR.Common.dll.so
3>[2/148] DryIoc.dll -> DryIoc.dll.so
3>[72/148] Microsoft.Extensions.Features.dll -> Microsoft.Extensions.Features.dll.so
3>[11/148] Microsoft.AspNetCore.SignalR.Protocols.Json.dll -> Microsoft.AspNetCore.SignalR.Protocols.Json.dll.so
3>[11/148] Microsoft.AspNetCore.SignalR.Protocols.Json.dll -> Microsoft.AspNetCore.SignalR.Protocols.Json.dll.so
3>[73/148] Microsoft.AspNetCore.Http.Connections.Common.dll -> Microsoft.AspNetCore.Http.Connections.Common.dll.so
3>[12/148] Microsoft.Extensions.Configuration.dll -> Microsoft.Extensions.Configuration.dll.so
3>[12/148] Microsoft.Extensions.Configuration.dll -> Microsoft.Extensions.Configuration.dll.so
3>[3/148] Humanizer.dll -> Humanizer.dll.so
3>[74/148] Xamarin.AndroidX.SavedState.dll -> Xamarin.AndroidX.SavedState.dll.so
3>[75/148] Xamarin.AndroidX.AppCompat.dll -> Xamarin.AndroidX.AppCompat.dll.so
3>[76/148] System.Net.Http.dll -> System.Net.Http.dll.so
3>[77/148] Xamarin.KotlinX.Coroutines.Core.Jvm.dll -> Xamarin.KotlinX.Coroutines.Core.Jvm.dll.so
3>[78/148] Prism.dll -> Prism.dll.so
3>[79/148] System.ComponentModel.Primitives.dll -> System.ComponentModel.Primitives.dll.so
3>[80/148] System.Drawing.dll -> System.Drawing.dll.so
3>[81/148] System.Private.Xml.dll -> System.Private.Xml.dll.so
3>[82/148] System.Web.HttpUtility.dll -> System.Web.HttpUtility.dll.so
3>[83/148] Microsoft.Maui.Controls.Compatibility.dll -> Microsoft.Maui.Controls.Compatibility.dll.so
3>[84/148] System.Text.Encodings.Web.dll -> System.Text.Encodings.Web.dll.so
3>[85/148] Xamarin.AndroidX.CustomView.dll -> Xamarin.AndroidX.CustomView.dll.so
3>[86/148] Microsoft.Extensions.Logging.dll -> Microsoft.Extensions.Logging.dll.so
3>[87/148] System.Security.AccessControl.dll -> System.Security.AccessControl.dll.so
3>[88/148] System.Net.Sockets.dll -> System.Net.Sockets.dll.so
3>[89/148] Microsoft.AspNetCore.SignalR.Client.dll -> Microsoft.AspNetCore.SignalR.Client.dll.so
3>[13/148] Microsoft.Extensions.Configuration.Abstractions.dll -> Microsoft.Extensions.Configuration.Abstractions.dll.so
3>[13/148] Microsoft.Extensions.Configuration.Abstractions.dll -> Microsoft.Extensions.Configuration.Abstractions.dll.so
3>[4/148] log4net.dll -> log4net.dll.so
3>[90/148] Xamarin.AndroidX.SwipeRefreshLayout.dll -> Xamarin.AndroidX.SwipeRefreshLayout.dll.so
3>[14/148] Microsoft.Extensions.DependencyInjection.dll -> Microsoft.Extensions.DependencyInjection.dll.so
3>[5/148] Microsoft.AspNetCore.Connections.Abstractions.dll -> Microsoft.AspNetCore.Connections.Abstractions.dll.so
3>[14/148] Microsoft.Extensions.DependencyInjection.dll -> Microsoft.Extensions.DependencyInjection.dll.so
3>[91/148] Microsoft.Extensions.Logging.Abstractions.dll -> Microsoft.Extensions.Logging.Abstractions.dll.so
3>[92/148] Microsoft.AspNetCore.SignalR.Client.Core.dll -> Microsoft.AspNetCore.SignalR.Client.Core.dll.so
3>[15/148] Microsoft.Extensions.DependencyInjection.Abstractions.dll -> Microsoft.Extensions.DependencyInjection.Abstractions.dll.so
3>[15/148] Microsoft.Extensions.DependencyInjection.Abstractions.dll -> Microsoft.Extensions.DependencyInjection.Abstractions.dll.so
3>[6/148] Microsoft.AspNetCore.Http.Connections.Client.dll -> Microsoft.AspNetCore.Http.Connections.Client.dll.so
3>[97/148] Microsoft.CSharp.dll -> Microsoft.CSharp.dll.so
3>[96/148] Xamarin.AndroidX.AppCompat.AppCompatResources.dll -> Xamarin.AndroidX.AppCompat.AppCompatResources.dll.so
3>[100/148] System.Net.Mail.dll -> System.Net.Mail.dll.so
3>[93/148] System.Security.Claims.dll -> System.Security.Claims.dll.so
3>[98/148] Xamarin.AndroidX.CardView.dll -> Xamarin.AndroidX.CardView.dll.so
3>[95/148] System.ComponentModel.TypeConverter.dll -> System.ComponentModel.TypeConverter.dll.so
3>[94/148] Prism.DryIoc.Maui.dll -> Prism.DryIoc.Maui.dll.so
3>[99/148] System.Reflection.Emit.ILGeneration.dll -> System.Reflection.Emit.ILGeneration.dll.so
3>[101/148] System.Net.WebClient.dll -> System.Net.WebClient.dll.so
3>[102/148] Xamarin.AndroidX.DrawerLayout.dll -> Xamarin.AndroidX.DrawerLayout.dll.so
3>[103/148] System.Formats.Asn1.dll -> System.Formats.Asn1.dll.so
3>[104/148] Microsoft.Maui.Controls.Xaml.dll -> Microsoft.Maui.Controls.Xaml.dll.so
3>[105/148] SqlKata.dll -> SqlKata.dll.so
3>[106/148] System.Collections.Concurrent.dll -> System.Collections.Concurrent.dll.so
3>[107/148] System.Xml.Linq.dll -> System.Xml.Linq.dll.so
3>[108/148] System.Text.Json.dll -> System.Text.Json.dll.so
3>[16/148] Microsoft.Extensions.Features.dll -> Microsoft.Extensions.Features.dll.so
3>[16/148] Microsoft.Extensions.Features.dll -> Microsoft.Extensions.Features.dll.so
3>[7/148] Microsoft.AspNetCore.Http.Connections.Common.dll -> Microsoft.AspNetCore.Http.Connections.Common.dll.so
3>[109/148] Microsoft.Win32.Primitives.dll -> Microsoft.Win32.Primitives.dll.so
3>[17/148] Microsoft.Extensions.Logging.dll -> Microsoft.Extensions.Logging.dll.so
3>[8/148] Microsoft.AspNetCore.SignalR.Client.dll -> Microsoft.AspNetCore.SignalR.Client.dll.so
3>[17/148] Microsoft.Extensions.Logging.dll -> Microsoft.Extensions.Logging.dll.so
3>[110/148] Xamarin.AndroidX.Collection.dll -> Xamarin.AndroidX.Collection.dll.so
3>[111/148] SqlKata.Execution.dll -> SqlKata.Execution.dll.so
3>[112/148] System.Collections.NonGeneric.dll -> System.Collections.NonGeneric.dll.so
3>[113/148] System.Text.RegularExpressions.dll -> System.Text.RegularExpressions.dll.so
3>[18/148] Microsoft.Extensions.Logging.Abstractions.dll -> Microsoft.Extensions.Logging.Abstractions.dll.so
3>[18/148] Microsoft.Extensions.Logging.Abstractions.dll -> Microsoft.Extensions.Logging.Abstractions.dll.so
3>[114/148] System.IO.Compression.dll -> System.IO.Compression.dll.so
3>[9/148] Microsoft.AspNetCore.SignalR.Client.Core.dll -> Microsoft.AspNetCore.SignalR.Client.Core.dll.so
3>[115/148] System.Net.WebSockets.Client.dll -> System.Net.WebSockets.Client.dll.so
3>[10/148] Microsoft.AspNetCore.SignalR.Common.dll -> Microsoft.AspNetCore.SignalR.Common.dll.so
3>[19/148] Microsoft.Extensions.Options.dll -> Microsoft.Extensions.Options.dll.so
3>[19/148] Microsoft.Extensions.Options.dll -> Microsoft.Extensions.Options.dll.so
3>[116/148] System.Console.dll -> System.Console.dll.so
3>[117/148] System.Net.NetworkInformation.dll -> System.Net.NetworkInformation.dll.so
3>[118/148] System.IO.FileSystem.Watcher.dll -> System.IO.FileSystem.Watcher.dll.so
3>[119/148] System.Threading.Channels.dll -> System.Threading.Channels.dll.so
3>[11/148] Microsoft.AspNetCore.SignalR.Protocols.Json.dll -> Microsoft.AspNetCore.SignalR.Protocols.Json.dll.so
3>[20/148] Microsoft.Extensions.Primitives.dll -> Microsoft.Extensions.Primitives.dll.so
3>[20/148] Microsoft.Extensions.Primitives.dll -> Microsoft.Extensions.Primitives.dll.so
3>[120/148] Xamarin.AndroidX.Lifecycle.LiveData.Core.dll -> Xamarin.AndroidX.Lifecycle.LiveData.Core.dll.so
3>[121/148] Xamarin.AndroidX.Fragment.dll -> Xamarin.AndroidX.Fragment.dll.so
3>[122/148] System.Net.WebSockets.dll -> System.Net.WebSockets.dll.so
3>[123/148] System.Security.Cryptography.Algorithms.dll -> System.Security.Cryptography.Algorithms.dll.so
3>[124/148] System.Net.Primitives.dll -> System.Net.Primitives.dll.so
3>[125/148] System.Reflection.Primitives.dll -> System.Reflection.Primitives.dll.so
3>[126/148] System.dll -> System.dll.so
3>[127/148] System.Data.Common.dll -> System.Data.Common.dll.so
3>[128/148] Prism.Maui.dll -> Prism.Maui.dll.so
3>[129/148] System.ComponentModel.dll -> System.ComponentModel.dll.so
3>[12/148] Microsoft.Extensions.Configuration.dll -> Microsoft.Extensions.Configuration.dll.so
3>[130/148] Xamarin.AndroidX.Lifecycle.ViewModel.dll -> Xamarin.AndroidX.Lifecycle.ViewModel.dll.so
3>[131/148] System.Net.NameResolution.dll -> System.Net.NameResolution.dll.so
3>[132/148] System.IO.Compression.Brotli.dll -> System.IO.Compression.Brotli.dll.so
3>[133/148] System.Reflection.Emit.Lightweight.dll -> System.Reflection.Emit.Lightweight.dll.so
3>[134/148] System.Net.WebHeaderCollection.dll -> System.Net.WebHeaderCollection.dll.so
3>[135/148] System.Xml.ReaderWriter.dll -> System.Xml.ReaderWriter.dll.so
3>[136/148] System.Runtime.CompilerServices.Unsafe.dll -> System.Runtime.CompilerServices.Unsafe.dll.so
3>[137/148] Xamarin.AndroidX.Lifecycle.Common.dll -> Xamarin.AndroidX.Lifecycle.Common.dll.so
3>[138/148] netstandard.dll -> netstandard.dll.so
3>[139/148] System.Security.Cryptography.Csp.dll -> System.Security.Cryptography.Csp.dll.so
3>[140/148] MES.Production.dll -> MES.Production.dll.so
3>[141/148] MES.Core.dll -> MES.Core.dll.so
3>[13/148] Microsoft.Extensions.Configuration.Abstractions.dll -> Microsoft.Extensions.Configuration.Abstractions.dll.so
3>[21/148] Microsoft.Maui.Graphics.dll -> Microsoft.Maui.Graphics.dll.so
3>[21/148] Microsoft.Maui.Graphics.dll -> Microsoft.Maui.Graphics.dll.so
3>[142/148] System.Security.Cryptography.Encoding.dll -> System.Security.Cryptography.Encoding.dll.so
3>[143/148] MES.Models.dll -> MES.Models.dll.so
3>[22/148] MySqlConnector.dll -> MySqlConnector.dll.so
3>[14/148] Microsoft.Extensions.DependencyInjection.dll -> Microsoft.Extensions.DependencyInjection.dll.so
3>[144/148] MES.System.dll -> MES.System.dll.so
3>[22/148] MySqlConnector.dll -> MySqlConnector.dll.so
3>[145/148] Microsoft.Maui.Controls.dll -> Microsoft.Maui.Controls.dll.so
3>[15/148] Microsoft.Extensions.DependencyInjection.Abstractions.dll -> Microsoft.Extensions.DependencyInjection.Abstractions.dll.so
3>[23/148] Prism.dll -> Prism.dll.so
3>[23/148] Prism.dll -> Prism.dll.so
3>[16/148] Microsoft.Extensions.Features.dll -> Microsoft.Extensions.Features.dll.so
3>[146/148] Microsoft.Maui.Essentials.dll -> Microsoft.Maui.Essentials.dll.so
3>[24/148] Prism.DryIoc.Maui.dll -> Prism.DryIoc.Maui.dll.so
3>[17/148] Microsoft.Extensions.Logging.dll -> Microsoft.Extensions.Logging.dll.so
3>[24/148] Prism.DryIoc.Maui.dll -> Prism.DryIoc.Maui.dll.so
3>[25/148] Prism.Maui.dll -> Prism.Maui.dll.so
3>[18/148] Microsoft.Extensions.Logging.Abstractions.dll -> Microsoft.Extensions.Logging.Abstractions.dll.so
3>[147/148] MES.dll -> MES.dll.so
3>[25/148] Prism.Maui.dll -> Prism.Maui.dll.so
3>[26/148] SqlKata.dll -> SqlKata.dll.so
3>[19/148] Microsoft.Extensions.Options.dll -> Microsoft.Extensions.Options.dll.so
3>[20/148] Microsoft.Extensions.Primitives.dll -> Microsoft.Extensions.Primitives.dll.so
3>[26/148] SqlKata.dll -> SqlKata.dll.so
3>[27/148] SqlKata.Execution.dll -> SqlKata.Execution.dll.so
3>[27/148] SqlKata.Execution.dll -> SqlKata.Execution.dll.so
3>[28/148] System.Configuration.ConfigurationManager.dll -> System.Configuration.ConfigurationManager.dll.so
3>[21/148] Microsoft.Maui.Graphics.dll -> Microsoft.Maui.Graphics.dll.so
3>[28/148] System.Configuration.ConfigurationManager.dll -> System.Configuration.ConfigurationManager.dll.so
3>[22/148] MySqlConnector.dll -> MySqlConnector.dll.so
3>[29/148] System.Data.SqlClient.dll -> System.Data.SqlClient.dll.so
3>[30/148] System.IO.Pipelines.dll -> System.IO.Pipelines.dll.so
3>[29/148] System.Data.SqlClient.dll -> System.Data.SqlClient.dll.so
3>[23/148] Prism.dll -> Prism.dll.so
3>[30/148] System.IO.Pipelines.dll -> System.IO.Pipelines.dll.so
3>[31/148] System.Security.Permissions.dll -> System.Security.Permissions.dll.so
3>[24/148] Prism.DryIoc.Maui.dll -> Prism.DryIoc.Maui.dll.so
3>[31/148] System.Security.Permissions.dll -> System.Security.Permissions.dll.so
3>[32/148] Xamarin.AndroidX.Activity.dll -> Xamarin.AndroidX.Activity.dll.so
3>[32/148] Xamarin.AndroidX.Activity.dll -> Xamarin.AndroidX.Activity.dll.so
3>[33/148] Xamarin.AndroidX.AppCompat.dll -> Xamarin.AndroidX.AppCompat.dll.so
3>[25/148] Prism.Maui.dll -> Prism.Maui.dll.so
3>[33/148] Xamarin.AndroidX.AppCompat.dll -> Xamarin.AndroidX.AppCompat.dll.so
3>[34/148] Xamarin.AndroidX.AppCompat.AppCompatResources.dll -> Xamarin.AndroidX.AppCompat.AppCompatResources.dll.so
3>[26/148] SqlKata.dll -> SqlKata.dll.so
3>[34/148] Xamarin.AndroidX.AppCompat.AppCompatResources.dll -> Xamarin.AndroidX.AppCompat.AppCompatResources.dll.so
3>[35/148] Xamarin.AndroidX.CardView.dll -> Xamarin.AndroidX.CardView.dll.so
3>[35/148] Xamarin.AndroidX.CardView.dll -> Xamarin.AndroidX.CardView.dll.so
3>[148/148] System.Private.CoreLib.dll -> System.Private.CoreLib.dll.so
3>[27/148] SqlKata.Execution.dll -> SqlKata.Execution.dll.so
3>[36/148] Xamarin.AndroidX.Collection.dll -> Xamarin.AndroidX.Collection.dll.so
3>[36/148] Xamarin.AndroidX.Collection.dll -> Xamarin.AndroidX.Collection.dll.so
3>[28/148] System.Configuration.ConfigurationManager.dll -> System.Configuration.ConfigurationManager.dll.so
3>[37/148] Xamarin.AndroidX.CoordinatorLayout.dll -> Xamarin.AndroidX.CoordinatorLayout.dll.so
3>[37/148] Xamarin.AndroidX.CoordinatorLayout.dll -> Xamarin.AndroidX.CoordinatorLayout.dll.so
3>[38/148] Xamarin.AndroidX.Core.dll -> Xamarin.AndroidX.Core.dll.so
3>[38/148] Xamarin.AndroidX.Core.dll -> Xamarin.AndroidX.Core.dll.so
3>[29/148] System.Data.SqlClient.dll -> System.Data.SqlClient.dll.so
3>[39/148] Xamarin.AndroidX.CursorAdapter.dll -> Xamarin.AndroidX.CursorAdapter.dll.so
3>[39/148] Xamarin.AndroidX.CursorAdapter.dll -> Xamarin.AndroidX.CursorAdapter.dll.so
3>[30/148] System.IO.Pipelines.dll -> System.IO.Pipelines.dll.so
3>[40/148] Xamarin.AndroidX.CustomView.dll -> Xamarin.AndroidX.CustomView.dll.so
3>[40/148] Xamarin.AndroidX.CustomView.dll -> Xamarin.AndroidX.CustomView.dll.so
3>[31/148] System.Security.Permissions.dll -> System.Security.Permissions.dll.so
3>[41/148] Xamarin.AndroidX.DrawerLayout.dll -> Xamarin.AndroidX.DrawerLayout.dll.so
3>[41/148] Xamarin.AndroidX.DrawerLayout.dll -> Xamarin.AndroidX.DrawerLayout.dll.so
3>[32/148] Xamarin.AndroidX.Activity.dll -> Xamarin.AndroidX.Activity.dll.so
3>[42/148] Xamarin.AndroidX.Fragment.dll -> Xamarin.AndroidX.Fragment.dll.so
3>[42/148] Xamarin.AndroidX.Fragment.dll -> Xamarin.AndroidX.Fragment.dll.so
3>[43/148] Xamarin.AndroidX.Lifecycle.Common.dll -> Xamarin.AndroidX.Lifecycle.Common.dll.so
3>[33/148] Xamarin.AndroidX.AppCompat.dll -> Xamarin.AndroidX.AppCompat.dll.so
3>[43/148] Xamarin.AndroidX.Lifecycle.Common.dll -> Xamarin.AndroidX.Lifecycle.Common.dll.so
3>[44/148] Xamarin.AndroidX.Lifecycle.LiveData.Core.dll -> Xamarin.AndroidX.Lifecycle.LiveData.Core.dll.so
3>[34/148] Xamarin.AndroidX.AppCompat.AppCompatResources.dll -> Xamarin.AndroidX.AppCompat.AppCompatResources.dll.so
3>[44/148] Xamarin.AndroidX.Lifecycle.LiveData.Core.dll -> Xamarin.AndroidX.Lifecycle.LiveData.Core.dll.so
3>[45/148] Xamarin.AndroidX.Lifecycle.ViewModel.dll -> Xamarin.AndroidX.Lifecycle.ViewModel.dll.so
3>[35/148] Xamarin.AndroidX.CardView.dll -> Xamarin.AndroidX.CardView.dll.so
3>[45/148] Xamarin.AndroidX.Lifecycle.ViewModel.dll -> Xamarin.AndroidX.Lifecycle.ViewModel.dll.so
3>[46/148] Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll -> Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll.so
3>[36/148] Xamarin.AndroidX.Collection.dll -> Xamarin.AndroidX.Collection.dll.so
3>[46/148] Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll -> Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll.so
3>[47/148] Xamarin.AndroidX.Loader.dll -> Xamarin.AndroidX.Loader.dll.so
3>[47/148] Xamarin.AndroidX.Loader.dll -> Xamarin.AndroidX.Loader.dll.so
3>[37/148] Xamarin.AndroidX.CoordinatorLayout.dll -> Xamarin.AndroidX.CoordinatorLayout.dll.so
3>[48/148] Xamarin.AndroidX.Navigation.Common.dll -> Xamarin.AndroidX.Navigation.Common.dll.so
3>[48/148] Xamarin.AndroidX.Navigation.Common.dll -> Xamarin.AndroidX.Navigation.Common.dll.so
3>[38/148] Xamarin.AndroidX.Core.dll -> Xamarin.AndroidX.Core.dll.so
3>[49/148] Xamarin.AndroidX.Navigation.Fragment.dll -> Xamarin.AndroidX.Navigation.Fragment.dll.so
3>[49/148] Xamarin.AndroidX.Navigation.Fragment.dll -> Xamarin.AndroidX.Navigation.Fragment.dll.so
3>[39/148] Xamarin.AndroidX.CursorAdapter.dll -> Xamarin.AndroidX.CursorAdapter.dll.so
3>[50/148] Xamarin.AndroidX.Navigation.Runtime.dll -> Xamarin.AndroidX.Navigation.Runtime.dll.so
3>[50/148] Xamarin.AndroidX.Navigation.Runtime.dll -> Xamarin.AndroidX.Navigation.Runtime.dll.so
3>[40/148] Xamarin.AndroidX.CustomView.dll -> Xamarin.AndroidX.CustomView.dll.so
3>[51/148] Xamarin.AndroidX.Navigation.UI.dll -> Xamarin.AndroidX.Navigation.UI.dll.so
3>[51/148] Xamarin.AndroidX.Navigation.UI.dll -> Xamarin.AndroidX.Navigation.UI.dll.so
3>[41/148] Xamarin.AndroidX.DrawerLayout.dll -> Xamarin.AndroidX.DrawerLayout.dll.so
3>[52/148] Xamarin.AndroidX.RecyclerView.dll -> Xamarin.AndroidX.RecyclerView.dll.so
3>[52/148] Xamarin.AndroidX.RecyclerView.dll -> Xamarin.AndroidX.RecyclerView.dll.so
3>[42/148] Xamarin.AndroidX.Fragment.dll -> Xamarin.AndroidX.Fragment.dll.so
3>[53/148] Xamarin.AndroidX.SavedState.dll -> Xamarin.AndroidX.SavedState.dll.so
3>[53/148] Xamarin.AndroidX.SavedState.dll -> Xamarin.AndroidX.SavedState.dll.so
3>[43/148] Xamarin.AndroidX.Lifecycle.Common.dll -> Xamarin.AndroidX.Lifecycle.Common.dll.so
3>[54/148] Xamarin.AndroidX.SwipeRefreshLayout.dll -> Xamarin.AndroidX.SwipeRefreshLayout.dll.so
3>[54/148] Xamarin.AndroidX.SwipeRefreshLayout.dll -> Xamarin.AndroidX.SwipeRefreshLayout.dll.so
3>[44/148] Xamarin.AndroidX.Lifecycle.LiveData.Core.dll -> Xamarin.AndroidX.Lifecycle.LiveData.Core.dll.so
3>[55/148] Xamarin.AndroidX.ViewPager.dll -> Xamarin.AndroidX.ViewPager.dll.so
3>[55/148] Xamarin.AndroidX.ViewPager.dll -> Xamarin.AndroidX.ViewPager.dll.so
3>[45/148] Xamarin.AndroidX.Lifecycle.ViewModel.dll -> Xamarin.AndroidX.Lifecycle.ViewModel.dll.so
3>[56/148] Xamarin.AndroidX.ViewPager2.dll -> Xamarin.AndroidX.ViewPager2.dll.so
3>[56/148] Xamarin.AndroidX.ViewPager2.dll -> Xamarin.AndroidX.ViewPager2.dll.so
3>[46/148] Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll -> Xamarin.AndroidX.Lifecycle.ViewModelSavedState.dll.so
3>[57/148] Xamarin.Google.Android.Material.dll -> Xamarin.Google.Android.Material.dll.so
3>[47/148] Xamarin.AndroidX.Loader.dll -> Xamarin.AndroidX.Loader.dll.so
3>[57/148] Xamarin.Google.Android.Material.dll -> Xamarin.Google.Android.Material.dll.so
3>[58/148] Xamarin.Kotlin.StdLib.dll -> Xamarin.Kotlin.StdLib.dll.so
3>[48/148] Xamarin.AndroidX.Navigation.Common.dll -> Xamarin.AndroidX.Navigation.Common.dll.so
3>[58/148] Xamarin.Kotlin.StdLib.dll -> Xamarin.Kotlin.StdLib.dll.so
3>[59/148] Xamarin.KotlinX.Coroutines.Core.Jvm.dll -> Xamarin.KotlinX.Coroutines.Core.Jvm.dll.so
3>[59/148] Xamarin.KotlinX.Coroutines.Core.Jvm.dll -> Xamarin.KotlinX.Coroutines.Core.Jvm.dll.so
3>[49/148] Xamarin.AndroidX.Navigation.Fragment.dll -> Xamarin.AndroidX.Navigation.Fragment.dll.so
3>[60/148] Microsoft.CSharp.dll -> Microsoft.CSharp.dll.so
3>[50/148] Xamarin.AndroidX.Navigation.Runtime.dll -> Xamarin.AndroidX.Navigation.Runtime.dll.so
3>[60/148] Microsoft.CSharp.dll -> Microsoft.CSharp.dll.so
3>[61/148] Microsoft.Win32.Primitives.dll -> Microsoft.Win32.Primitives.dll.so
3>[61/148] Microsoft.Win32.Primitives.dll -> Microsoft.Win32.Primitives.dll.so
3>[51/148] Xamarin.AndroidX.Navigation.UI.dll -> Xamarin.AndroidX.Navigation.UI.dll.so
3>[52/148] Xamarin.AndroidX.RecyclerView.dll -> Xamarin.AndroidX.RecyclerView.dll.so
3>[62/148] System.Collections.Concurrent.dll -> System.Collections.Concurrent.dll.so
3>[62/148] System.Collections.Concurrent.dll -> System.Collections.Concurrent.dll.so
3>[53/148] Xamarin.AndroidX.SavedState.dll -> Xamarin.AndroidX.SavedState.dll.so
3>[63/148] System.Collections.NonGeneric.dll -> System.Collections.NonGeneric.dll.so
3>[63/148] System.Collections.NonGeneric.dll -> System.Collections.NonGeneric.dll.so
3>[54/148] Xamarin.AndroidX.SwipeRefreshLayout.dll -> Xamarin.AndroidX.SwipeRefreshLayout.dll.so
3>[64/148] System.Collections.Specialized.dll -> System.Collections.Specialized.dll.so
3>[64/148] System.Collections.Specialized.dll -> System.Collections.Specialized.dll.so
3>[55/148] Xamarin.AndroidX.ViewPager.dll -> Xamarin.AndroidX.ViewPager.dll.so
3>[65/148] System.Collections.dll -> System.Collections.dll.so
3>[65/148] System.Collections.dll -> System.Collections.dll.so
3>[56/148] Xamarin.AndroidX.ViewPager2.dll -> Xamarin.AndroidX.ViewPager2.dll.so
3>[66/148] System.ComponentModel.Annotations.dll -> System.ComponentModel.Annotations.dll.so
3>[66/148] System.ComponentModel.Annotations.dll -> System.ComponentModel.Annotations.dll.so
3>[67/148] System.ComponentModel.EventBasedAsync.dll -> System.ComponentModel.EventBasedAsync.dll.so
3>[67/148] System.ComponentModel.EventBasedAsync.dll -> System.ComponentModel.EventBasedAsync.dll.so
3>[57/148] Xamarin.Google.Android.Material.dll -> Xamarin.Google.Android.Material.dll.so
3>[68/148] System.ComponentModel.Primitives.dll -> System.ComponentModel.Primitives.dll.so
3>[68/148] System.ComponentModel.Primitives.dll -> System.ComponentModel.Primitives.dll.so
3>[58/148] Xamarin.Kotlin.StdLib.dll -> Xamarin.Kotlin.StdLib.dll.so
3>[69/148] System.ComponentModel.TypeConverter.dll -> System.ComponentModel.TypeConverter.dll.so
3>[69/148] System.ComponentModel.TypeConverter.dll -> System.ComponentModel.TypeConverter.dll.so
3>[59/148] Xamarin.KotlinX.Coroutines.Core.Jvm.dll -> Xamarin.KotlinX.Coroutines.Core.Jvm.dll.so
3>[70/148] System.ComponentModel.dll -> System.ComponentModel.dll.so
3>[70/148] System.ComponentModel.dll -> System.ComponentModel.dll.so
3>[60/148] Microsoft.CSharp.dll -> Microsoft.CSharp.dll.so
3>[71/148] System.Console.dll -> System.Console.dll.so
3>[71/148] System.Console.dll -> System.Console.dll.so
3>[61/148] Microsoft.Win32.Primitives.dll -> Microsoft.Win32.Primitives.dll.so
3>[72/148] System.Data.Common.dll -> System.Data.Common.dll.so
3>[72/148] System.Data.Common.dll -> System.Data.Common.dll.so
3>[73/148] System.Diagnostics.DiagnosticSource.dll -> System.Diagnostics.DiagnosticSource.dll.so
3>[73/148] System.Diagnostics.DiagnosticSource.dll -> System.Diagnostics.DiagnosticSource.dll.so
3>[62/148] System.Collections.Concurrent.dll -> System.Collections.Concurrent.dll.so
3>[74/148] System.Diagnostics.Process.dll -> System.Diagnostics.Process.dll.so
3>[74/148] System.Diagnostics.Process.dll -> System.Diagnostics.Process.dll.so
3>[63/148] System.Collections.NonGeneric.dll -> System.Collections.NonGeneric.dll.so
3>[75/148] System.Diagnostics.TraceSource.dll -> System.Diagnostics.TraceSource.dll.so
3>[75/148] System.Diagnostics.TraceSource.dll -> System.Diagnostics.TraceSource.dll.so
3>[64/148] System.Collections.Specialized.dll -> System.Collections.Specialized.dll.so
3>[76/148] System.Drawing.Primitives.dll -> System.Drawing.Primitives.dll.so
3>[76/148] System.Drawing.Primitives.dll -> System.Drawing.Primitives.dll.so
3>[65/148] System.Collections.dll -> System.Collections.dll.so
3>[77/148] System.Drawing.dll -> System.Drawing.dll.so
3>[77/148] System.Drawing.dll -> System.Drawing.dll.so
3>[66/148] System.ComponentModel.Annotations.dll -> System.ComponentModel.Annotations.dll.so
3>[78/148] System.Formats.Asn1.dll -> System.Formats.Asn1.dll.so
3>[78/148] System.Formats.Asn1.dll -> System.Formats.Asn1.dll.so
3>[67/148] System.ComponentModel.EventBasedAsync.dll -> System.ComponentModel.EventBasedAsync.dll.so
3>[79/148] System.IO.Compression.Brotli.dll -> System.IO.Compression.Brotli.dll.so
3>[79/148] System.IO.Compression.Brotli.dll -> System.IO.Compression.Brotli.dll.so
3>[68/148] System.ComponentModel.Primitives.dll -> System.ComponentModel.Primitives.dll.so
3>[80/148] System.IO.Compression.dll -> System.IO.Compression.dll.so
3>[80/148] System.IO.Compression.dll -> System.IO.Compression.dll.so
3>[69/148] System.ComponentModel.TypeConverter.dll -> System.ComponentModel.TypeConverter.dll.so
3>[81/148] System.IO.FileSystem.Watcher.dll -> System.IO.FileSystem.Watcher.dll.so
3>[81/148] System.IO.FileSystem.Watcher.dll -> System.IO.FileSystem.Watcher.dll.so
3>[70/148] System.ComponentModel.dll -> System.ComponentModel.dll.so
3>[82/148] System.IO.Pipes.dll -> System.IO.Pipes.dll.so
3>[82/148] System.IO.Pipes.dll -> System.IO.Pipes.dll.so
3>[71/148] System.Console.dll -> System.Console.dll.so
3>[72/148] System.Data.Common.dll -> System.Data.Common.dll.so
3>[83/148] System.Linq.Expressions.dll -> System.Linq.Expressions.dll.so
3>[83/148] System.Linq.Expressions.dll -> System.Linq.Expressions.dll.so
3>[73/148] System.Diagnostics.DiagnosticSource.dll -> System.Diagnostics.DiagnosticSource.dll.so
3>[74/148] System.Diagnostics.Process.dll -> System.Diagnostics.Process.dll.so
3>[75/148] System.Diagnostics.TraceSource.dll -> System.Diagnostics.TraceSource.dll.so
3>[84/148] System.Linq.dll -> System.Linq.dll.so
3>[84/148] System.Linq.dll -> System.Linq.dll.so
3>[76/148] System.Drawing.Primitives.dll -> System.Drawing.Primitives.dll.so
3>[85/148] System.Memory.dll -> System.Memory.dll.so
3>[85/148] System.Memory.dll -> System.Memory.dll.so
3>[77/148] System.Drawing.dll -> System.Drawing.dll.so
3>[78/148] System.Formats.Asn1.dll -> System.Formats.Asn1.dll.so
3>[86/148] System.Net.Http.dll -> System.Net.Http.dll.so
3>[86/148] System.Net.Http.dll -> System.Net.Http.dll.so
3>[79/148] System.IO.Compression.Brotli.dll -> System.IO.Compression.Brotli.dll.so
3>[87/148] System.Net.Mail.dll -> System.Net.Mail.dll.so
3>[87/148] System.Net.Mail.dll -> System.Net.Mail.dll.so
3>[80/148] System.IO.Compression.dll -> System.IO.Compression.dll.so
3>[88/148] System.Net.NameResolution.dll -> System.Net.NameResolution.dll.so
3>[88/148] System.Net.NameResolution.dll -> System.Net.NameResolution.dll.so
3>[81/148] System.IO.FileSystem.Watcher.dll -> System.IO.FileSystem.Watcher.dll.so
3>[89/148] System.Net.NetworkInformation.dll -> System.Net.NetworkInformation.dll.so
3>[89/148] System.Net.NetworkInformation.dll -> System.Net.NetworkInformation.dll.so
3>[82/148] System.IO.Pipes.dll -> System.IO.Pipes.dll.so
3>[90/148] System.Net.Primitives.dll -> System.Net.Primitives.dll.so
3>[90/148] System.Net.Primitives.dll -> System.Net.Primitives.dll.so
3>[91/148] System.Net.Quic.dll -> System.Net.Quic.dll.so
3>[91/148] System.Net.Quic.dll -> System.Net.Quic.dll.so
3>[83/148] System.Linq.Expressions.dll -> System.Linq.Expressions.dll.so
3>[92/148] System.Net.Requests.dll -> System.Net.Requests.dll.so
3>[92/148] System.Net.Requests.dll -> System.Net.Requests.dll.so
3>[84/148] System.Linq.dll -> System.Linq.dll.so
3>[93/148] System.Net.Security.dll -> System.Net.Security.dll.so
3>[93/148] System.Net.Security.dll -> System.Net.Security.dll.so
3>[94/148] System.Net.ServicePoint.dll -> System.Net.ServicePoint.dll.so
3>[85/148] System.Memory.dll -> System.Memory.dll.so
3>[94/148] System.Net.ServicePoint.dll -> System.Net.ServicePoint.dll.so
3>[95/148] System.Net.Sockets.dll -> System.Net.Sockets.dll.so
3>[95/148] System.Net.Sockets.dll -> System.Net.Sockets.dll.so
3>[96/148] System.Net.WebClient.dll -> System.Net.WebClient.dll.so
3>[96/148] System.Net.WebClient.dll -> System.Net.WebClient.dll.so
3>[86/148] System.Net.Http.dll -> System.Net.Http.dll.so
3>[97/148] System.Net.WebHeaderCollection.dll -> System.Net.WebHeaderCollection.dll.so
3>[97/148] System.Net.WebHeaderCollection.dll -> System.Net.WebHeaderCollection.dll.so
3>[87/148] System.Net.Mail.dll -> System.Net.Mail.dll.so
3>[98/148] System.Net.WebSockets.Client.dll -> System.Net.WebSockets.Client.dll.so
3>[98/148] System.Net.WebSockets.Client.dll -> System.Net.WebSockets.Client.dll.so
3>[88/148] System.Net.NameResolution.dll -> System.Net.NameResolution.dll.so
3>[99/148] System.Net.WebSockets.dll -> System.Net.WebSockets.dll.so
3>[99/148] System.Net.WebSockets.dll -> System.Net.WebSockets.dll.so
3>[89/148] System.Net.NetworkInformation.dll -> System.Net.NetworkInformation.dll.so
3>[100/148] System.Numerics.Vectors.dll -> System.Numerics.Vectors.dll.so
3>[100/148] System.Numerics.Vectors.dll -> System.Numerics.Vectors.dll.so
3>[101/148] System.ObjectModel.dll -> System.ObjectModel.dll.so
3>[90/148] System.Net.Primitives.dll -> System.Net.Primitives.dll.so
3>[101/148] System.ObjectModel.dll -> System.ObjectModel.dll.so
3>[91/148] System.Net.Quic.dll -> System.Net.Quic.dll.so
3>[102/148] System.Private.Uri.dll -> System.Private.Uri.dll.so
3>[102/148] System.Private.Uri.dll -> System.Private.Uri.dll.so
3>[92/148] System.Net.Requests.dll -> System.Net.Requests.dll.so
3>[103/148] System.Private.Xml.Linq.dll -> System.Private.Xml.Linq.dll.so
3>[103/148] System.Private.Xml.Linq.dll -> System.Private.Xml.Linq.dll.so
3>[93/148] System.Net.Security.dll -> System.Net.Security.dll.so
3>[104/148] System.Private.Xml.dll -> System.Private.Xml.dll.so
3>[94/148] System.Net.ServicePoint.dll -> System.Net.ServicePoint.dll.so
3>[104/148] System.Private.Xml.dll -> System.Private.Xml.dll.so
3>[105/148] System.Reflection.Emit.ILGeneration.dll -> System.Reflection.Emit.ILGeneration.dll.so
3>[95/148] System.Net.Sockets.dll -> System.Net.Sockets.dll.so
3>[105/148] System.Reflection.Emit.ILGeneration.dll -> System.Reflection.Emit.ILGeneration.dll.so
3>[106/148] System.Reflection.Emit.Lightweight.dll -> System.Reflection.Emit.Lightweight.dll.so
3>[96/148] System.Net.WebClient.dll -> System.Net.WebClient.dll.so
3>[106/148] System.Reflection.Emit.Lightweight.dll -> System.Reflection.Emit.Lightweight.dll.so
3>[107/148] System.Reflection.Primitives.dll -> System.Reflection.Primitives.dll.so
3>[97/148] System.Net.WebHeaderCollection.dll -> System.Net.WebHeaderCollection.dll.so
3>[107/148] System.Reflection.Primitives.dll -> System.Reflection.Primitives.dll.so
3>[108/148] System.Runtime.CompilerServices.Unsafe.dll -> System.Runtime.CompilerServices.Unsafe.dll.so
3>[108/148] System.Runtime.CompilerServices.Unsafe.dll -> System.Runtime.CompilerServices.Unsafe.dll.so
3>[98/148] System.Net.WebSockets.Client.dll -> System.Net.WebSockets.Client.dll.so
3>[109/148] System.Runtime.InteropServices.RuntimeInformation.dll -> System.Runtime.InteropServices.RuntimeInformation.dll.so
3>[109/148] System.Runtime.InteropServices.RuntimeInformation.dll -> System.Runtime.InteropServices.RuntimeInformation.dll.so
3>[99/148] System.Net.WebSockets.dll -> System.Net.WebSockets.dll.so
3>[110/148] System.Runtime.Numerics.dll -> System.Runtime.Numerics.dll.so
3>[110/148] System.Runtime.Numerics.dll -> System.Runtime.Numerics.dll.so
3>[100/148] System.Numerics.Vectors.dll -> System.Numerics.Vectors.dll.so
3>[111/148] System.Runtime.Serialization.Formatters.dll -> System.Runtime.Serialization.Formatters.dll.so
3>[111/148] System.Runtime.Serialization.Formatters.dll -> System.Runtime.Serialization.Formatters.dll.so
3>[112/148] System.Runtime.dll -> System.Runtime.dll.so
3>[101/148] System.ObjectModel.dll -> System.ObjectModel.dll.so
3>[112/148] System.Runtime.dll -> System.Runtime.dll.so
3>[113/148] System.Security.AccessControl.dll -> System.Security.AccessControl.dll.so
3>[113/148] System.Security.AccessControl.dll -> System.Security.AccessControl.dll.so
3>[114/148] System.Security.Claims.dll -> System.Security.Claims.dll.so
3>[102/148] System.Private.Uri.dll -> System.Private.Uri.dll.so
3>[114/148] System.Security.Claims.dll -> System.Security.Claims.dll.so
3>[115/148] System.Security.Cryptography.Algorithms.dll -> System.Security.Cryptography.Algorithms.dll.so
3>[103/148] System.Private.Xml.Linq.dll -> System.Private.Xml.Linq.dll.so
3>[115/148] System.Security.Cryptography.Algorithms.dll -> System.Security.Cryptography.Algorithms.dll.so
3>[116/148] System.Security.Cryptography.Csp.dll -> System.Security.Cryptography.Csp.dll.so
3>[116/148] System.Security.Cryptography.Csp.dll -> System.Security.Cryptography.Csp.dll.so
3>[117/148] System.Security.Cryptography.Encoding.dll -> System.Security.Cryptography.Encoding.dll.so
3>[117/148] System.Security.Cryptography.Encoding.dll -> System.Security.Cryptography.Encoding.dll.so
3>[104/148] System.Private.Xml.dll -> System.Private.Xml.dll.so
3>[118/148] System.Security.Cryptography.Primitives.dll -> System.Security.Cryptography.Primitives.dll.so
3>[118/148] System.Security.Cryptography.Primitives.dll -> System.Security.Cryptography.Primitives.dll.so
3>[105/148] System.Reflection.Emit.ILGeneration.dll -> System.Reflection.Emit.ILGeneration.dll.so
3>[119/148] System.Security.Cryptography.X509Certificates.dll -> System.Security.Cryptography.X509Certificates.dll.so
3>[106/148] System.Reflection.Emit.Lightweight.dll -> System.Reflection.Emit.Lightweight.dll.so
3>[119/148] System.Security.Cryptography.X509Certificates.dll -> System.Security.Cryptography.X509Certificates.dll.so
3>[120/148] System.Security.Principal.Windows.dll -> System.Security.Principal.Windows.dll.so
3>[107/148] System.Reflection.Primitives.dll -> System.Reflection.Primitives.dll.so
3>[120/148] System.Security.Principal.Windows.dll -> System.Security.Principal.Windows.dll.so
3>[121/148] System.Text.Encoding.CodePages.dll -> System.Text.Encoding.CodePages.dll.so
3>[108/148] System.Runtime.CompilerServices.Unsafe.dll -> System.Runtime.CompilerServices.Unsafe.dll.so
3>[121/148] System.Text.Encoding.CodePages.dll -> System.Text.Encoding.CodePages.dll.so
3>[122/148] System.Text.Encoding.Extensions.dll -> System.Text.Encoding.Extensions.dll.so
3>[109/148] System.Runtime.InteropServices.RuntimeInformation.dll -> System.Runtime.InteropServices.RuntimeInformation.dll.so
3>[122/148] System.Text.Encoding.Extensions.dll -> System.Text.Encoding.Extensions.dll.so
3>[123/148] System.Text.Encodings.Web.dll -> System.Text.Encodings.Web.dll.so
3>[110/148] System.Runtime.Numerics.dll -> System.Runtime.Numerics.dll.so
3>[123/148] System.Text.Encodings.Web.dll -> System.Text.Encodings.Web.dll.so
3>[111/148] System.Runtime.Serialization.Formatters.dll -> System.Runtime.Serialization.Formatters.dll.so
3>[112/148] System.Runtime.dll -> System.Runtime.dll.so
3>[124/148] System.Text.Json.dll -> System.Text.Json.dll.so
3>[113/148] System.Security.AccessControl.dll -> System.Security.AccessControl.dll.so
3>[124/148] System.Text.Json.dll -> System.Text.Json.dll.so
3>[114/148] System.Security.Claims.dll -> System.Security.Claims.dll.so
3>[125/148] System.Text.RegularExpressions.dll -> System.Text.RegularExpressions.dll.so
3>[125/148] System.Text.RegularExpressions.dll -> System.Text.RegularExpressions.dll.so
3>[115/148] System.Security.Cryptography.Algorithms.dll -> System.Security.Cryptography.Algorithms.dll.so
3>[116/148] System.Security.Cryptography.Csp.dll -> System.Security.Cryptography.Csp.dll.so
3>[126/148] System.Threading.Channels.dll -> System.Threading.Channels.dll.so
3>[126/148] System.Threading.Channels.dll -> System.Threading.Channels.dll.so
3>[117/148] System.Security.Cryptography.Encoding.dll -> System.Security.Cryptography.Encoding.dll.so
3>[127/148] System.Threading.Thread.dll -> System.Threading.Thread.dll.so
3>[127/148] System.Threading.Thread.dll -> System.Threading.Thread.dll.so
3>[128/148] System.Threading.ThreadPool.dll -> System.Threading.ThreadPool.dll.so
3>[118/148] System.Security.Cryptography.Primitives.dll -> System.Security.Cryptography.Primitives.dll.so
3>[128/148] System.Threading.ThreadPool.dll -> System.Threading.ThreadPool.dll.so
3>[129/148] System.Threading.dll -> System.Threading.dll.so
3>[129/148] System.Threading.dll -> System.Threading.dll.so
3>[119/148] System.Security.Cryptography.X509Certificates.dll -> System.Security.Cryptography.X509Certificates.dll.so
3>[130/148] System.Transactions.Local.dll -> System.Transactions.Local.dll.so
3>[130/148] System.Transactions.Local.dll -> System.Transactions.Local.dll.so
3>[120/148] System.Security.Principal.Windows.dll -> System.Security.Principal.Windows.dll.so
3>[131/148] System.Web.HttpUtility.dll -> System.Web.HttpUtility.dll.so
3>[131/148] System.Web.HttpUtility.dll -> System.Web.HttpUtility.dll.so
3>[121/148] System.Text.Encoding.CodePages.dll -> System.Text.Encoding.CodePages.dll.so
3>[132/148] System.Xml.Linq.dll -> System.Xml.Linq.dll.so
3>[132/148] System.Xml.Linq.dll -> System.Xml.Linq.dll.so
3>[122/148] System.Text.Encoding.Extensions.dll -> System.Text.Encoding.Extensions.dll.so
3>[133/148] System.Xml.ReaderWriter.dll -> System.Xml.ReaderWriter.dll.so
3>[133/148] System.Xml.ReaderWriter.dll -> System.Xml.ReaderWriter.dll.so
3>[123/148] System.Text.Encodings.Web.dll -> System.Text.Encodings.Web.dll.so
3>[134/148] System.dll -> System.dll.so
3>[134/148] System.dll -> System.dll.so
3>[135/148] netstandard.dll -> netstandard.dll.so
3>[135/148] netstandard.dll -> netstandard.dll.so
3>[136/148] Java.Interop.dll -> Java.Interop.dll.so
3>[136/148] Java.Interop.dll -> Java.Interop.dll.so
3>[124/148] System.Text.Json.dll -> System.Text.Json.dll.so
3>[125/148] System.Text.RegularExpressions.dll -> System.Text.RegularExpressions.dll.so
3>[137/148] Mono.Android.dll -> Mono.Android.dll.so
3>[126/148] System.Threading.Channels.dll -> System.Threading.Channels.dll.so
3>[137/148] Mono.Android.dll -> Mono.Android.dll.so
3>[127/148] System.Threading.Thread.dll -> System.Threading.Thread.dll.so
3>[128/148] System.Threading.ThreadPool.dll -> System.Threading.ThreadPool.dll.so
3>[129/148] System.Threading.dll -> System.Threading.dll.so
3>[138/148] Microsoft.Maui.dll -> Microsoft.Maui.dll.so
3>[130/148] System.Transactions.Local.dll -> System.Transactions.Local.dll.so
3>[138/148] Microsoft.Maui.dll -> Microsoft.Maui.dll.so
3>[131/148] System.Web.HttpUtility.dll -> System.Web.HttpUtility.dll.so
3>[139/148] Microsoft.Maui.Controls.Compatibility.dll -> Microsoft.Maui.Controls.Compatibility.dll.so
3>[132/148] System.Xml.Linq.dll -> System.Xml.Linq.dll.so
3>[139/148] Microsoft.Maui.Controls.Compatibility.dll -> Microsoft.Maui.Controls.Compatibility.dll.so
3>[133/148] System.Xml.ReaderWriter.dll -> System.Xml.ReaderWriter.dll.so
3>[140/148] Microsoft.Maui.Controls.Xaml.dll -> Microsoft.Maui.Controls.Xaml.dll.so
3>[134/148] System.dll -> System.dll.so
3>[140/148] Microsoft.Maui.Controls.Xaml.dll -> Microsoft.Maui.Controls.Xaml.dll.so
3>[135/148] netstandard.dll -> netstandard.dll.so
3>[136/148] Java.Interop.dll -> Java.Interop.dll.so
3>[141/148] Microsoft.Maui.Controls.dll -> Microsoft.Maui.Controls.dll.so
3>[137/148] Mono.Android.dll -> Mono.Android.dll.so
3>[142/148] Microsoft.Maui.Essentials.dll -> Microsoft.Maui.Essentials.dll.so
3>[143/148] MES.Core.dll -> MES.Core.dll.so
3>[141/148] Microsoft.Maui.Controls.dll -> Microsoft.Maui.Controls.dll.so
3>[144/148] MES.Models.dll -> MES.Models.dll.so
3>[138/148] Microsoft.Maui.dll -> Microsoft.Maui.dll.so
3>[142/148] Microsoft.Maui.Essentials.dll -> Microsoft.Maui.Essentials.dll.so
3>[145/148] MES.Production.dll -> MES.Production.dll.so
3>[143/148] MES.Core.dll -> MES.Core.dll.so
3>[139/148] Microsoft.Maui.Controls.Compatibility.dll -> Microsoft.Maui.Controls.Compatibility.dll.so
3>[146/148] MES.System.dll -> MES.System.dll.so
3>[144/148] MES.Models.dll -> MES.Models.dll.so
3>[140/148] Microsoft.Maui.Controls.Xaml.dll -> Microsoft.Maui.Controls.Xaml.dll.so
3>[145/148] MES.Production.dll -> MES.Production.dll.so
3>[146/148] MES.System.dll -> MES.System.dll.so
3>[147/148] MES.dll -> MES.dll.so
3>[147/148] MES.dll -> MES.dll.so
3>[141/148] Microsoft.Maui.Controls.dll -> Microsoft.Maui.Controls.dll.so
3>[142/148] Microsoft.Maui.Essentials.dll -> Microsoft.Maui.Essentials.dll.so
3>[148/148] System.Private.CoreLib.dll -> System.Private.CoreLib.dll.so
3>已完成生成项目“MES.csproj”的操作。
3>[143/148] MES.Core.dll -> MES.Core.dll.so
3>[144/148] MES.Models.dll -> MES.Models.dll.so
3>[148/148] System.Private.CoreLib.dll -> System.Private.CoreLib.dll.so
3>[145/148] MES.Production.dll -> MES.Production.dll.so
3>[146/148] MES.System.dll -> MES.System.dll.so
3>[147/148] MES.dll -> MES.dll.so
3>[148/148] System.Private.CoreLib.dll -> System.Private.CoreLib.dll.so
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004: System.ArgumentException: 已添加了具有相同键的项。
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004:    在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004:    在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004:    在 Xamarin.Android.Tasks.TypeMapGenerator.GenerateRelease(Boolean skipJniAddNativeMethodRegistrationAttributeScan, List`1 javaTypes, String outputDirectory, ApplicationConfigTaskState appConfState)
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004:    在 Xamarin.Android.Tasks.GenerateJavaStubs.WriteTypeMappings(List`1 types, TypeDefinitionCache cache)
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004:    在 Xamarin.Android.Tasks.GenerateJavaStubs.Run(DirectoryAssemblyResolver res)
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004:    在 Xamarin.Android.Tasks.GenerateJavaStubs.RunTask()
3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): error XAGJS7004:    在 Microsoft.Android.Build.Tasks.AndroidTask.Execute() 位置 /Users/runner/work/1/s/xamarin-android/external/xamarin-android-tools/src/Microsoft.Android.Build.BaseTasks/AndroidTask.cs:行号 17
3>已完成生成项目“MES.csproj”的操作 - 失败。
3>已完成生成项目“MES.csproj”的操作。
========== “生成”: 2 成功,1 失败,2 更新,0 已跳过 ==========
gsgoodluck commented 2 years ago

已启动生成... 1>------ 已启动生成: 项目: MES.Core, 配置: Debug Any CPU ------ 1>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy 1>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs 1>E:\MAUI\PrismMaui\MES\MES.Core\UserManagement\UserManagementService.cs(16,7,16,25): warning CS0105: “MES.UserManagement”的 using 指令以前在此命名空间中出现过 1>E:\MAUI\PrismMaui\MES\MES.Core\UserManagement\UserManagementService.cs(24,19,24,21): warning CS0108: “UserManagementService.DB”隐藏继承的成员“ServiceBase.DB”。如果是有意隐藏,请使用关键字 new。 1>E:\MAUI\PrismMaui\MES\MES.Core\DataBaseManager\DataBase.cs(66,30,66,32): warning CS0168: 声明了变量“ex”,但从未使用过 1>E:\MAUI\PrismMaui\MES\MES.Core\UserManagement\Authorization.cs(170,21,170,23): warning CS0168: 声明了变量“ex”,但从未使用过 1>E:\MAUI\PrismMaui\MES\MES.Core\DataBaseManager\DataBase.cs(506,25,506,39): warning CS0472: 由于“int”类型的值永不等于“int?”类型的 "null",该表达式的结果始终为“true” 1>E:\MAUI\PrismMaui\MES\MES.Core\DataBaseManager\DataBase.cs(495,20,495,23): warning CS0219: 变量“Key”已被赋值,但从未使用过它的值 1>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Dependencies”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs 1>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs 1>已完成生成项目“MES.Models.csproj”的操作。 1>MES.Core -> E:\MAUI\PrismMaui\MES\MES.Core\bin\Debug\net6.0\MES.Core.dll 1>已完成生成项目“MES.Core.csproj”的操作。 2>------ 已启动生成: 项目: MES.Production, 配置: Debug Any CPU ------ 2>MES.Production -> E:\MAUI\PrismMaui\MES\MES.Production\bin\Debug\net6.0\MES.Production.dll 3>------ 已启动生成: 项目: MES, 配置: Debug Any CPU ------ 3>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy 3>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy 3>你正在使用 .NET 的预览版。请查看 https://aka.ms/dotnet-support-policy 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count” 3>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Dependencies”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs 3>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs 3>已完成生成项目“MES.Models.csproj”的操作。 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count” 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count” 3>C:\Program Files\dotnet\sdk\7.0.100-preview.6.22352.1\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.DefaultItems.Shared.targets(152,5): warning NETSDK1023: 项目中包含了“Microsoft.Maui.Extensions”的 PackageReference。此包由 .NET SDK 隐式引用,且通常情况下你无需从项目中对其进行引用。有关详细信息,请参阅 https://aka.ms/sdkimplicitrefs 3>已完成生成项目“MES.Core.csproj”的操作。 3>已完成生成项目“MES.Production.csproj”的操作。 3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Debug\net6.0-maccatalyst\maccatalyst-x64\MES.dll 3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Debug\net6.0-ios\iossimulator-x64\MES.dll 3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Debug\net6.0-android\MES.dll 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count” 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(21,24,21,46): warning CS1998: 此异步方法缺少 "await" 运算符,将以同步方式运行。请考虑使用 "await" 运算符等待非阻止的 API 调用,或者使用 "await Task.Run(...)" 在后台线程上执行占用大量 CPU 的工作。 3>E:\MAUI\PrismMaui\MES\MES\MES\ViewModels\MainPageViewModel.cs(9,17,9,23): warning CS0169: 从不使用字段“MainPageViewModel._count” 3>已完成生成项目“MES.Production.csproj”的操作。 3>已完成生成项目“MES.csproj”的操作。 3>MES -> E:\MAUI\PrismMaui\MES\MES\MES\bin\Debug\net6.0-windows10.0.19041.0\win10-x64\MES.dll ========== “生成”: 3 成功,0 失败,2 更新,0 已跳过 ==========

rmarinho commented 2 years ago

Thank you so much for your bug report! Unfortunately, this report seems to be missing some details that will help us diagnose (and therefore hopefully fix) the potential bug. We would like to ask you to use the bug report template when opening an issue and fill that out with all the details you have. Especially any error message, stacktrace and/or relevant code that lead up to the issue would be very helpful.

Ideally we would love to have a minimal, reproducible example that you upload to a GitHub repository and link us to. That should greatly speed up the process, thanks!

ghost commented 2 years ago

Hi @gsgoodluck. We have added the "s/needs-info" label to this issue, which indicates that we have an open question for you before we can take further action. This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.

ghost commented 2 years ago

Hi @gsgoodluck. We have added the "s/needs-repro" label to this issue, which indicates that we require steps and sample code to reproduce the issue before we can take further action. Please try to create a minimal sample project/solution or code samples which reproduce the issue, ideally as a GitHub repo that we can clone. See more details about creating repros here: https://github.com/dotnet/maui/blob/main/.github/repro.md

This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.

gsgoodluck commented 2 years ago

Hi This example compiles with the same error Release Prism.Maui-master.zip

dansiegel commented 2 years ago

The Prism.Maui repo is not a valid reproduction @gsgoodluck

gsgoodluck commented 2 years ago

Hi Change here

Prism.Maui.Rx

net6.0 true Prism.Maui.Rx is a support package for .NET MAUI developers. This package provides some helpers to access an IObservable for globally handling Navigation Request Results. true

global.json

{ "sdk": { "version": "6.0", "rollForward": "latestPatch", "allowPrerelease": true } }

mattleibow commented 2 years ago

I am not sure, is this still an issue?

Also, this looks to be an issue with the android build tasks and not maui itself:

3>C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\32.0.424\tools\Xamarin.Android.Common.targets(1442,3): 
System.ArgumentException: 已添加了具有相同键的项。
   在 System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
   在 System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
   在 Xamarin.Android.Tasks.TypeMapGenerator.GenerateRelease(Boolean skipJniAddNativeMethodRegistrationAttributeScan, List`1 javaTypes, String outputDirectory, ApplicationConfigTaskState appConfState)
在 Xamarin.Android.Tasks.GenerateJavaStubs.WriteTypeMappings(List`1 types, TypeDefinitionCache cache)
在 Xamarin.Android.Tasks.GenerateJavaStubs.Run(DirectoryAssemblyResolver res)
在 Xamarin.Android.Tasks.GenerateJavaStubs.RunTask()
在 Microsoft.Android.Build.Tasks.AndroidTask.Execute() 位置 /Users/runner/work/1/s/xamarin-android/external/xamarin-android-tools/src/Microsoft.Android.Build.BaseTasks/AndroidTask.cs:行号 17

Could you open the issue again at https://github.com/xamarin/xamarin-android/ and make sure to attach a reproducible sample? This is very much likely to either build cache issues or a nuget package bringing in duplicate artifacts. At least the Android team over there will be able to help you find it.

ghost commented 2 years ago

Hi @gsgoodluck. We have added the "s/needs-repro" label to this issue, which indicates that we require steps and sample code to reproduce the issue before we can take further action. Please try to create a minimal sample project/solution or code samples which reproduce the issue, ideally as a GitHub repo that we can clone. See more details about creating repros here: https://github.com/dotnet/maui/blob/main/.github/repro.md

This issue will be closed automatically in 7 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.

ghost commented 2 years ago

This issue has been automatically marked as stale because it has been marked as requiring author feedback to reproduce the issue but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. If it is closed, feel free to comment when you are able to provide the additional information and we will re-investigate.

gsgoodluck commented 2 years ago

Use maui Template,Release (Windows......) Error System.ArgumentException: 已添加了具有相同键的项。

You can try it

jonpryor commented 2 years ago

Fixed by: https://github.com/xamarin/xamarin-android/commit/840a415a563a1b121210c441dd51c0da3a431dfc