Merge branch 'main' into mu-20231212-gps-fb-mlkit-missing-dependencies

This commit is contained in:
moljac 2024-05-09 10:07:33 +02:00 коммит произвёл GitHub
Родитель 6ef733e6a6 02fa19f30e
Коммит 13b6093417
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
286 изменённых файлов: 956 добавлений и 5031 удалений

Просмотреть файл

@ -6,7 +6,7 @@
<RepositoryCommit>$(BUILD_SOURCEVERSION)</RepositoryCommit>
<!-- Default TFM's we build for -->
<_DefaultTargetFrameworks>MonoAndroid12.0;net6.0-android;net7.0-android</_DefaultTargetFrameworks>
<_DefaultTargetFrameworks>net7.0-android</_DefaultTargetFrameworks>
<!-- Use an updated 'generator' -->
<!-- It's ok to use "Windows" here because we only use managed code from this package -->
@ -48,18 +48,12 @@
<!-- Folders that .targets files need to go into -->
<ItemGroup>
<AndroidXNuGetTargetFolders Include="build\monoandroid12.0" />
<AndroidXNuGetTargetFolders Include="build\net6.0-android31.0" />
<AndroidXNuGetTargetFolders Include="build\net7.0-android33.0" />
<AndroidXNuGetTargetFolders Include="buildTransitive\monoandroid12.0" />
<AndroidXNuGetTargetFolders Include="buildTransitive\net6.0-android31.0" />
<AndroidXNuGetTargetFolders Include="buildTransitive\net7.0-android33.0" />
</ItemGroup>
<!-- Folders that _._ files need to go into for packages without managed libraries -->
<ItemGroup>
<AndroidXNuGetLibFolders Include="lib\monoandroid12.0" />
<AndroidXNuGetLibFolders Include="lib\net6.0-android31.0" />
<AndroidXNuGetLibFolders Include="lib\net7.0-android33.0" />
</ItemGroup>

Просмотреть файл

@ -1,13 +1,12 @@
# AndroidX for .NET Android
# AndroidX for .NET for Android
[![GitHub License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/xamarin/AndroidX/blob/master/LICENSE)
[![GitHub License](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/xamarin/AndroidX/blob/main/LICENSE)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/xamarin/AndroidX/issues)
[![GitHub contributors](https://img.shields.io/github/contributors/xamarin/AndroidX.svg)](https://github.com/xamarin/AndroidX/graphs/contributors)
[![Build Status](https://dev.azure.com/devdiv/DevDiv/_apis/build/status/Xamarin/Components/AndroidX?branchName=master)](https://dev.azure.com/devdiv/DevDiv/_build/latest?definitionId=12322&branchName=master)
Microsoft creates and maintains .NET Android bindings for many of [Google's AndroidX libraries](https://developer.android.com/jetpack).
Microsoft creates and maintains .NET for Android bindings for many of [Google's AndroidX libraries](https://developer.android.com/jetpack).
These bindings will also continue to support Xamarin.Android projects for the remainder of its [supported lifecycle](https://dotnet.microsoft.com/en-us/platform/support/policy/xamarin).
Support for Xamarin.Android ended on [May 1st, 2024](https://dotnet.microsoft.com/en-us/platform/support/policy/xamarin). New versions of these packages will not support Xamarin.Android.
## What is AndroidX
@ -45,21 +44,20 @@ Note that these packages are largely just autogenerated bindings around Google's
## License
The license for this repository is specified in [LICENSE.md](LICENSE.md)
The license for this repository is specified in [LICENSE.md](LICENSE.md).
Each package published from this repository generally contains third-party code (ie: `.jar`/`.aar`) that
is governed by its own license. Per-package license information is available in [cgmanifest.json](cgmanifest.json).
## Building
Instructions for building this repository are specified in [BUILDING.md](BUILDING.md)
Instructions for building this repository are specified in [BUILDING.md](BUILDING.md).
In depth building instructions: [./docs/build.md](./docs/build.md).
## Contribution Guidelines
The Contribution Guidelines for this repository are listed in [CONTRIBUTING.md](.github/CONTRIBUTING.md)
The Contribution Guidelines for this repository are listed in [CONTRIBUTING.md](.github/CONTRIBUTING.md).
This project has adopted the code of conduct defined by the Contributor Covenant
to clarify expected behavior in our community. For more information, see the
@ -67,4 +65,4 @@ to clarify expected behavior in our community. For more information, see the
## .NET Foundation
This project is part of the [.NET Foundation](http://www.dotnetfoundation.org/projects)
This project is part of the [.NET Foundation](http://www.dotnetfoundation.org/projects).

Просмотреть файл

@ -19,12 +19,10 @@ variables:
# Windows specific variables
windowsAgentPoolName: Maui-1ESPT # Windows VM pool name
windowsImage: 1ESPT-Windows2022 # Windows VM image name
windowsClassicInstaller: https://aka.ms/xamarin-android-commercial-d17-8-windows # Windows Classic XA installer URL
# macOS specific variables
macosAgentPoolName: Azure Pipelines # macOS VM pool name
macosImage: internal-macos12 # macOS VM image name
macosClassicInstaller: https://aka.ms/xamarin-android-commercial-d17-8-macos # macOS Classic XA installer URL
resources:
repositories:
@ -57,7 +55,6 @@ extends:
name: $(windowsAgentPoolName)
image: $(windowsImage)
os: windows
classicInstallerUrl: $(windowsClassicInstaller)
mainBranchName: $(mainBranchName)
configuration: $(configuration)
runAPIScan: true
@ -69,7 +66,6 @@ extends:
name: $(macosAgentPoolName)
vmImage: $(macosImage)
os: macOS
classicInstallerUrl: $(macosClassicInstaller)
mainBranchName: $(mainBranchName)
configuration: $(configuration)

Просмотреть файл

@ -757,56 +757,6 @@ Task("samples-generate-all-targets")
System.IO.File.WriteAllText("./output/Directory.packages.props", content_new);
});
Task("samples")
.IsDependentOn("nuget")
.IsDependentOn("samples-only");
Task("samples-only")
.IsDependentOn("samples-generate-all-targets")
.Does(() =>
{
// clear the packages folder so we always use the latest
var packagesPath = MakeAbsolute((DirectoryPath)"./samples/packages").FullPath;
EnsureDirectoryExists(packagesPath);
CleanDirectories(packagesPath);
// build the samples
MSBuildSettings settings_msbuild = new MSBuildSettings()
.SetConfiguration("Debug") // We don't need to run linking
.SetVerbosity(VERBOSITY)
.SetMaxCpuCount(0)
.WithRestore()
.WithProperty("RestorePackagesPath", packagesPath)
.WithProperty("AndroidSdkBuildToolsVersion", $"{AndroidSdkBuildTools}");
if (!string.IsNullOrEmpty(ANDROID_HOME))
settings_msbuild.WithProperty("AndroidSdkDirectory", $"{ANDROID_HOME}");
if (!string.IsNullOrEmpty(MSBUILD_PATH))
settings_msbuild.ToolPath = MSBUILD_PATH;
string[] solutions = new string[]
{
"./samples/BuildAll/BuildAll.sln",
"./samples/BuildXamarinFormsApp/BuildXamarinFormsApp.sln",
"./samples/BuildMinimalMaterial/BuildMinimalMaterial.sln",
//"./samples/BuildMinimalMaterialAppCompat/BuildMinimalMaterialAppCompat.sln",
//"./samples/dotnet/BuildAllDotNet.sln", //MSBuild cannot handle net6 projects
};
foreach(string solution in solutions)
{
FilePath fp_solution = new FilePath(solution);
string filename = fp_solution.GetFilenameWithoutExtension().ToString();
Information($"=====================================================================================================");
Information($"MSBuild {solution} / {filename}");
MSBuild(solution, settings_msbuild.EnableBinaryLogger($"./output/samples.{filename}.{CONFIGURATION}.msbuild.{DateTime.Now.ToString("yyyyMMddHHmmss")}.binlog"));
}
return;
});
Task("samples-dotnet")
.IsDependentOn("nuget")
.IsDependentOn("samples-only-dotnet");
@ -833,7 +783,6 @@ Task("samples-only-dotnet")
{
"./samples/dotnet/BuildAllDotNet.sln",
"./samples/dotnet/BuildAllMauiApp.sln",
"./samples/dotnet/BuildAllXamarinForms.sln",
};
foreach(string solution in solutions)
@ -1020,7 +969,6 @@ Task ("packages")
Task ("full-run")
.IsDependentOn ("binderate")
.IsDependentOn ("nuget")
.IsDependentOn ("samples")
.IsDependentOn ("samples-dotnet")
.IsDependentOn ("tools-executive-order")
;
@ -1041,7 +989,6 @@ Task ("ci-build")
// Runs samples without building packages
Task ("ci-samples")
.IsDependentOn ("samples-only")
.IsDependentOn ("samples-only-dotnet")
;

Просмотреть файл

@ -2,7 +2,6 @@ parameters:
# Environment Parameters
name: # Job display name
buildPool: # VM pool information
classicInstallerUrl: # URL to retrieve the Classic XA installer
# Build Parameters
mainBranchName: 'main' # Name of Git "main" branch
@ -21,7 +20,6 @@ parameters:
tools: # Additional .NET global tools to install
- 'xamarin.androidbinderator.tool': '0.5.7'
- 'Cake.Tool': '4.0.0'
- 'boots': '1.1.0.36'
- 'private-api-tools': '1.0.3'
# Reporting/Analysis Parameters
@ -54,7 +52,6 @@ jobs:
dotnetWorkloadSource: ${{ parameters.dotnetWorkloadSource }}
dotnetNuGetOrgSource: ${{ parameters.dotnetNuGetOrgSource }}
dotnetTools: ${{ parameters.tools }}
classicInstallerUrl: ${{ parameters.classicInstallerUrl }}
- template: build-and-test.yml
parameters:

Просмотреть файл

@ -5,7 +5,6 @@ parameters:
dotnetWorkloadSource: ''
dotnetNuGetOrgSource: ''
dotnetTools: []
classicInstallerUrl: ''
steps:
# before the build starts, make sure the tooling is as expected
@ -37,6 +36,3 @@ steps:
- ${{ each pair in tool }}:
- pwsh: dotnet tool update -g ${{ pair.key }} --version ${{ pair.value }}
displayName: 'Install tool: ${{ pair.key }}'
- pwsh: boots --url ${{ parameters.classicInstallerUrl }} --downgrade-first
displayName: 'Install Classic XA'

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -5,310 +5,310 @@
| | | | | |
|----|----------------------------------------------------------------------|--------------------|----------------------------------------------------------------------|--------------------|
| 1|androidx.activity:activity |1.9.0 |Xamarin.AndroidX.Activity |1.9.0 |
| 2|androidx.activity:activity-compose |1.9.0 |Xamarin.AndroidX.Activity.Compose |1.9.0 |
| 3|androidx.activity:activity-ktx |1.9.0 |Xamarin.AndroidX.Activity.Ktx |1.9.0 |
| 4|androidx.ads:ads-identifier |1.0.0-alpha05 |Xamarin.AndroidX.Ads.Identifier |1.0.0.22-alpha05 |
| 5|androidx.ads:ads-identifier-common |1.0.0-alpha05 |Xamarin.AndroidX.Ads.IdentifierCommon |1.0.0.22-alpha05 |
| 6|androidx.ads:ads-identifier-provider |1.0.0-alpha05 |Xamarin.AndroidX.Ads.IdentifierProvider |1.0.0.22-alpha05 |
| 7|androidx.annotation:annotation |1.7.1 |Xamarin.AndroidX.Annotation |1.7.1.1 |
| 8|androidx.annotation:annotation-experimental |1.4.1 |Xamarin.AndroidX.Annotation.Experimental |1.4.1 |
| 9|androidx.annotation:annotation-jvm |1.7.1 |Xamarin.AndroidX.Annotation.Jvm |1.7.1.1 |
| 10|androidx.appcompat:appcompat |1.6.1 |Xamarin.AndroidX.AppCompat |1.6.1.7 |
| 11|androidx.appcompat:appcompat-resources |1.6.1 |Xamarin.AndroidX.AppCompat.AppCompatResources |1.6.1.8 |
| 12|androidx.arch.core:core-common |2.2.0 |Xamarin.AndroidX.Arch.Core.Common |2.2.0.7 |
| 13|androidx.arch.core:core-runtime |2.2.0 |Xamarin.AndroidX.Arch.Core.Runtime |2.2.0.7 |
| 14|androidx.asynclayoutinflater:asynclayoutinflater |1.0.0 |Xamarin.AndroidX.AsyncLayoutInflater |1.0.0.23 |
| 15|androidx.autofill:autofill |1.1.0 |Xamarin.AndroidX.AutoFill |1.1.0.22 |
| 16|androidx.biometric:biometric |1.1.0 |Xamarin.AndroidX.Biometric |1.1.0.19 |
| 17|androidx.browser:browser |1.8.0 |Xamarin.AndroidX.Browser |1.8.0 |
| 18|androidx.camera:camera-camera2 |1.3.3 |Xamarin.AndroidX.Camera.Camera2 |1.3.3 |
| 19|androidx.camera:camera-core |1.3.3 |Xamarin.AndroidX.Camera.Core |1.3.3 |
| 20|androidx.camera:camera-extensions |1.3.3 |Xamarin.AndroidX.Camera.Extensions |1.3.3 |
| 21|androidx.camera:camera-lifecycle |1.3.3 |Xamarin.AndroidX.Camera.Lifecycle |1.3.3 |
| 22|androidx.camera:camera-video |1.3.3 |Xamarin.AndroidX.Camera.Video |1.3.3 |
| 23|androidx.camera:camera-view |1.3.3 |Xamarin.AndroidX.Camera.View |1.3.3 |
| 24|androidx.car:car |1.0.0-alpha7 |Xamarin.AndroidX.Car.Car |1.0.0.21-alpha7 |
| 25|androidx.car:car-cluster |1.0.0-alpha5 |Xamarin.AndroidX.Car.Cluster |1.0.0.21-alpha5 |
| 26|androidx.car.app:app |1.2.0 |Xamarin.AndroidX.Car.App.App |1.2.0.8 |
| 27|androidx.cardview:cardview |1.0.0 |Xamarin.AndroidX.CardView |1.0.0.25 |
| 28|androidx.collection:collection |1.4.0 |Xamarin.AndroidX.Collection |1.4.0.2 |
| 29|androidx.collection:collection-jvm |1.4.0 |Xamarin.AndroidX.Collection.Jvm |1.4.0.1 |
| 30|androidx.collection:collection-ktx |1.4.0 |Xamarin.AndroidX.Collection.Ktx |1.4.0.1 |
| 31|androidx.compose.animation:animation |1.6.6 |Xamarin.AndroidX.Compose.Animation |1.6.6 |
| 32|androidx.compose.animation:animation-android |1.6.6 |Xamarin.AndroidX.Compose.Animation.Android |1.6.6 |
| 33|androidx.compose.animation:animation-core |1.6.6 |Xamarin.AndroidX.Compose.Animation.Core |1.6.6 |
| 34|androidx.compose.animation:animation-core-android |1.6.6 |Xamarin.AndroidX.Compose.Animation.Core.Android |1.6.6 |
| 35|androidx.compose.animation:animation-graphics |1.6.6 |Xamarin.AndroidX.Compose.Animation.Graphics |1.6.6 |
| 36|androidx.compose.animation:animation-graphics-android |1.6.6 |Xamarin.AndroidX.Compose.Animation.Graphics.Android |1.6.6 |
| 37|androidx.compose.foundation:foundation |1.6.6 |Xamarin.AndroidX.Compose.Foundation |1.6.6 |
| 38|androidx.compose.foundation:foundation-android |1.6.6 |Xamarin.AndroidX.Compose.Foundation.Android |1.6.6 |
| 39|androidx.compose.foundation:foundation-layout |1.6.6 |Xamarin.AndroidX.Compose.Foundation.Layout |1.6.6 |
| 40|androidx.compose.foundation:foundation-layout-android |1.6.6 |Xamarin.AndroidX.Compose.Foundation.Layout.Android |1.6.6 |
| 41|androidx.compose.material:material |1.6.6 |Xamarin.AndroidX.Compose.Material |1.6.6 |
| 42|androidx.compose.material:material-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Android |1.6.6 |
| 43|androidx.compose.material:material-icons-core |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Core |1.6.6 |
| 44|androidx.compose.material:material-icons-core-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Core.Android |1.6.6 |
| 45|androidx.compose.material:material-icons-extended |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Extended |1.6.6 |
| 46|androidx.compose.material:material-icons-extended-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Extended.Android |1.6.6 |
| 47|androidx.compose.material:material-ripple |1.6.6 |Xamarin.AndroidX.Compose.Material.Ripple |1.6.6 |
| 48|androidx.compose.material:material-ripple-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Ripple.Android |1.6.6 |
| 49|androidx.compose.material3:material3 |1.2.1 |Xamarin.AndroidX.Compose.Material3 |1.2.1 |
| 50|androidx.compose.material3:material3-android |1.2.1 |Xamarin.AndroidX.Compose.Material3Android |1.2.1 |
| 51|androidx.compose.material3:material3-window-size-class |1.2.1 |Xamarin.AndroidX.Compose.Material3.WindowSizeClass |1.2.1 |
| 52|androidx.compose.material3:material3-window-size-class-android |1.2.1 |Xamarin.AndroidX.Compose.Material3.WindowSizeClassAndroid |1.2.1 |
| 53|androidx.compose.runtime:runtime |1.6.6 |Xamarin.AndroidX.Compose.Runtime |1.6.6 |
| 54|androidx.compose.runtime:runtime-android |1.6.6 |Xamarin.AndroidX.Compose.Runtime.Android |1.6.6 |
| 55|androidx.compose.runtime:runtime-livedata |1.6.6 |Xamarin.AndroidX.Compose.Runtime.LiveData |1.6.6 |
| 56|androidx.compose.runtime:runtime-rxjava2 |1.6.6 |Xamarin.AndroidX.Compose.Runtime.RxJava2 |1.6.6 |
| 57|androidx.compose.runtime:runtime-rxjava3 |1.6.6 |Xamarin.AndroidX.Compose.Runtime.RxJava3 |1.6.6 |
| 58|androidx.compose.runtime:runtime-saveable |1.6.6 |Xamarin.AndroidX.Compose.Runtime.Saveable |1.6.6 |
| 59|androidx.compose.runtime:runtime-saveable-android |1.6.6 |Xamarin.AndroidX.Compose.Runtime.Saveable.Android |1.6.6 |
| 60|androidx.compose.ui:ui |1.6.6 |Xamarin.AndroidX.Compose.UI |1.6.6 |
| 61|androidx.compose.ui:ui-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Android |1.6.6 |
| 62|androidx.compose.ui:ui-geometry |1.6.6 |Xamarin.AndroidX.Compose.UI.Geometry |1.6.6 |
| 63|androidx.compose.ui:ui-geometry-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Geometry.Android |1.6.6 |
| 64|androidx.compose.ui:ui-graphics |1.6.6 |Xamarin.AndroidX.Compose.UI.Graphics |1.6.6 |
| 65|androidx.compose.ui:ui-graphics-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Graphics.Android |1.6.6 |
| 66|androidx.compose.ui:ui-text |1.6.6 |Xamarin.AndroidX.Compose.UI.Text |1.6.6 |
| 67|androidx.compose.ui:ui-text-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Text.Android |1.6.6 |
| 68|androidx.compose.ui:ui-tooling |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling |1.6.6 |
| 69|androidx.compose.ui:ui-tooling-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Android |1.6.6 |
| 70|androidx.compose.ui:ui-tooling-data |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Data |1.6.6 |
| 71|androidx.compose.ui:ui-tooling-data-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Data.Android |1.6.6 |
| 72|androidx.compose.ui:ui-tooling-preview |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Preview |1.6.6 |
| 73|androidx.compose.ui:ui-tooling-preview-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Preview.Android |1.6.6 |
| 74|androidx.compose.ui:ui-unit |1.6.6 |Xamarin.AndroidX.Compose.UI.Unit |1.6.6 |
| 75|androidx.compose.ui:ui-unit-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Unit.Android |1.6.6 |
| 76|androidx.compose.ui:ui-util |1.6.6 |Xamarin.AndroidX.Compose.UI.Util |1.6.6 |
| 77|androidx.compose.ui:ui-util-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Util.Android |1.6.6 |
| 78|androidx.compose.ui:ui-viewbinding |1.6.6 |Xamarin.AndroidX.Compose.UI.ViewBinding |1.6.6 |
| 79|androidx.concurrent:concurrent-futures |1.1.0 |Xamarin.AndroidX.Concurrent.Futures |1.1.0.18 |
| 80|androidx.concurrent:concurrent-futures-ktx |1.1.0 |Xamarin.AndroidX.Concurrent.Futures.Ktx |1.1.0.7 |
| 81|androidx.constraintlayout:constraintlayout |2.1.4 |Xamarin.AndroidX.ConstraintLayout |2.1.4.10 |
| 82|androidx.constraintlayout:constraintlayout-core |1.0.4 |Xamarin.AndroidX.ConstraintLayout.Core |1.0.4.10 |
| 83|androidx.constraintlayout:constraintlayout-solver |2.0.4 |Xamarin.AndroidX.ConstraintLayout.Solver |2.0.4.18 |
| 84|androidx.contentpager:contentpager |1.0.0 |Xamarin.AndroidX.ContentPager |1.0.0.23 |
| 85|androidx.coordinatorlayout:coordinatorlayout |1.2.0 |Xamarin.AndroidX.CoordinatorLayout |1.2.0.11 |
| 86|androidx.core:core |1.13.0 |Xamarin.AndroidX.Core |1.13.0 |
| 87|androidx.core:core-animation |1.0.0-alpha02 |Xamarin.AndroidX.Core.Animation |1.0.0.21-alpha02 |
| 88|androidx.core:core-google-shortcuts |1.1.0 |Xamarin.AndroidX.Core.GoogleShortcuts |1.1.0.8 |
| 89|androidx.core:core-ktx |1.13.0 |Xamarin.AndroidX.Core.Core.Ktx |1.13.0 |
| 90|androidx.core:core-role |1.0.0 |Xamarin.AndroidX.Core.Role |1.0.0.21 |
| 91|androidx.core:core-splashscreen |1.0.1 |Xamarin.AndroidX.Core.SplashScreen |1.0.1.6 |
| 92|androidx.credentials:credentials |1.2.2 |Xamarin.AndroidX.Credentials |1.2.2 |
| 93|androidx.credentials:credentials-play-services-auth |1.2.2 |Xamarin.AndroidX.Credentials.PlayServicesAuth |1.2.2 |
| 94|androidx.cursoradapter:cursoradapter |1.0.0 |Xamarin.AndroidX.CursorAdapter |1.0.0.23 |
| 95|androidx.customview:customview |1.1.0 |Xamarin.AndroidX.CustomView |1.1.0.22 |
| 96|androidx.customview:customview-poolingcontainer |1.0.0 |Xamarin.AndroidX.CustomView.PoolingContainer |1.0.0.9 |
| 97|androidx.databinding:databinding-adapters |8.3.2 |Xamarin.AndroidX.DataBinding.DataBindingAdapters |8.3.2 |
| 98|androidx.databinding:databinding-common |8.3.2 |Xamarin.AndroidX.DataBinding.DataBindingCommon |8.3.2 |
| 99|androidx.databinding:databinding-runtime |8.3.2 |Xamarin.AndroidX.DataBinding.DataBindingRuntime |8.3.2 |
| 100|androidx.databinding:viewbinding |8.3.2 |Xamarin.AndroidX.DataBinding.ViewBinding |8.3.2 |
| 101|androidx.datastore:datastore |1.1.0 |Xamarin.AndroidX.DataStore |1.1.0 |
| 102|androidx.datastore:datastore-android |1.1.0 |Xamarin.AndroidX.DataStore.Android |1.1.0 |
| 103|androidx.datastore:datastore-core |1.1.0 |Xamarin.AndroidX.DataStore.Core |1.1.0 |
| 104|androidx.datastore:datastore-core-android |1.1.0 |Xamarin.AndroidX.DataStore.Core.Android |1.1.0 |
| 105|androidx.datastore:datastore-core-jvm |1.1.0 |Xamarin.AndroidX.DataStore.Core.Jvm |1.1.0 |
| 106|androidx.datastore:datastore-core-okio |1.1.0 |Xamarin.AndroidX.DataStore.Core.OkIO |1.1.0 |
| 107|androidx.datastore:datastore-core-okio-jvm |1.1.0 |Xamarin.AndroidX.DataStore.Core.OkIO.Jvm |1.1.0 |
| 108|androidx.datastore:datastore-preferences |1.1.0 |Xamarin.AndroidX.DataStore.Preferences |1.1.0 |
| 109|androidx.datastore:datastore-preferences-android |1.1.0 |Xamarin.AndroidX.DataStore.Preferences.Android |1.1.0 |
| 110|androidx.datastore:datastore-preferences-core |1.1.0 |Xamarin.AndroidX.DataStore.Preferences.Core |1.1.0 |
| 111|androidx.datastore:datastore-preferences-core-jvm |1.1.0 |Xamarin.AndroidX.DataStore.Preferences.Core.Jvm |1.1.0 |
| 112|androidx.datastore:datastore-rxjava2 |1.1.0 |Xamarin.AndroidX.DataStore.RxJava2 |1.1.0 |
| 113|androidx.datastore:datastore-rxjava3 |1.1.0 |Xamarin.AndroidX.DataStore.RxJava3 |1.1.0 |
| 114|androidx.documentfile:documentfile |1.0.1 |Xamarin.AndroidX.DocumentFile |1.0.1.23 |
| 115|androidx.drawerlayout:drawerlayout |1.2.0 |Xamarin.AndroidX.DrawerLayout |1.2.0.7 |
| 116|androidx.dynamicanimation:dynamicanimation |1.0.0 |Xamarin.AndroidX.DynamicAnimation |1.0.0.23 |
| 117|androidx.emoji:emoji |1.1.0 |Xamarin.AndroidX.Emoji |1.1.0.18 |
| 118|androidx.emoji:emoji-appcompat |1.1.0 |Xamarin.AndroidX.Emoji.AppCompat |1.1.0.18 |
| 119|androidx.emoji:emoji-bundled |1.1.0 |Xamarin.AndroidX.Emoji.Bundled |1.1.0.18 |
| 120|androidx.emoji2:emoji2 |1.4.0 |Xamarin.AndroidX.Emoji2 |1.4.0.4 |
| 121|androidx.emoji2:emoji2-views-helper |1.4.0 |Xamarin.AndroidX.Emoji2.ViewsHelper |1.4.0.4 |
| 122|androidx.enterprise:enterprise-feedback |1.1.0 |Xamarin.AndroidX.Enterprise.Feedback |1.1.0.9 |
| 123|androidx.exifinterface:exifinterface |1.3.7 |Xamarin.AndroidX.ExifInterface |1.3.7.1 |
| 124|androidx.fragment:fragment |1.6.2 |Xamarin.AndroidX.Fragment |1.6.2.2 |
| 125|androidx.fragment:fragment-ktx |1.6.2 |Xamarin.AndroidX.Fragment.Ktx |1.6.2.2 |
| 126|androidx.gridlayout:gridlayout |1.0.0 |Xamarin.AndroidX.GridLayout |1.0.0.23 |
| 127|androidx.heifwriter:heifwriter |1.0.0 |Xamarin.AndroidX.HeifWriter |1.0.0.23 |
| 128|androidx.interpolator:interpolator |1.0.0 |Xamarin.AndroidX.Interpolator |1.0.0.23 |
| 129|androidx.leanback:leanback |1.0.0 |Xamarin.AndroidX.Leanback |1.0.0.25 |
| 130|androidx.leanback:leanback-preference |1.0.0 |Xamarin.AndroidX.Leanback.Preference |1.0.0.23 |
| 131|androidx.legacy:legacy-preference-v14 |1.0.0 |Xamarin.AndroidX.Legacy.Preference.V14 |1.0.0.23 |
| 132|androidx.legacy:legacy-support-core-ui |1.0.0 |Xamarin.AndroidX.Legacy.Support.Core.UI |1.0.0.24 |
| 133|androidx.legacy:legacy-support-core-utils |1.0.0 |Xamarin.AndroidX.Legacy.Support.Core.Utils |1.0.0.23 |
| 134|androidx.legacy:legacy-support-v13 |1.0.0 |Xamarin.AndroidX.Legacy.Support.V13 |1.0.0.23 |
| 135|androidx.legacy:legacy-support-v4 |1.0.0 |Xamarin.AndroidX.Legacy.Support.V4 |1.0.0.23 |
| 136|androidx.lifecycle:lifecycle-common |2.7.0 |Xamarin.AndroidX.Lifecycle.Common |2.7.0.1 |
| 137|androidx.lifecycle:lifecycle-common-java8 |2.7.0 |Xamarin.AndroidX.Lifecycle.Common.Java8 |2.7.0.1 |
| 138|androidx.lifecycle:lifecycle-extensions |2.2.0 |Xamarin.AndroidX.Lifecycle.Extensions |2.2.0.23 |
| 139|androidx.lifecycle:lifecycle-livedata |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData |2.7.0.1 |
| 140|androidx.lifecycle:lifecycle-livedata-core |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData.Core |2.7.0.1 |
| 141|androidx.lifecycle:lifecycle-livedata-core-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx |2.7.0.1 |
| 142|androidx.lifecycle:lifecycle-livedata-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData.Ktx |2.7.0.1 |
| 143|androidx.lifecycle:lifecycle-process |2.7.0 |Xamarin.AndroidX.Lifecycle.Process |2.7.0.1 |
| 144|androidx.lifecycle:lifecycle-reactivestreams |2.7.0 |Xamarin.AndroidX.Lifecycle.ReactiveStreams |2.7.0.1 |
| 145|androidx.lifecycle:lifecycle-reactivestreams-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.ReactiveStreams.Ktx |2.7.0.1 |
| 146|androidx.lifecycle:lifecycle-runtime |2.7.0 |Xamarin.AndroidX.Lifecycle.Runtime |2.7.0.1 |
| 147|androidx.lifecycle:lifecycle-runtime-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.Runtime.Ktx |2.7.0.1 |
| 148|androidx.lifecycle:lifecycle-service |2.7.0 |Xamarin.AndroidX.Lifecycle.Service |2.7.0.1 |
| 149|androidx.lifecycle:lifecycle-viewmodel |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModel |2.7.0.1 |
| 150|androidx.lifecycle:lifecycle-viewmodel-compose |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModel.Compose |2.7.0.1 |
| 151|androidx.lifecycle:lifecycle-viewmodel-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModel.Ktx |2.7.0.1 |
| 152|androidx.lifecycle:lifecycle-viewmodel-savedstate |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModelSavedState |2.7.0.1 |
| 153|androidx.loader:loader |1.1.0 |Xamarin.AndroidX.Loader |1.1.0.23 |
| 154|androidx.localbroadcastmanager:localbroadcastmanager |1.1.0 |Xamarin.AndroidX.LocalBroadcastManager |1.1.0.11 |
| 155|androidx.media:media |1.7.0 |Xamarin.AndroidX.Media |1.7.0.1 |
| 156|androidx.media2:media2-common |1.3.0 |Xamarin.AndroidX.Media2.Common |1.3.0.1 |
| 157|androidx.media2:media2-session |1.3.0 |Xamarin.AndroidX.Media2.Session |1.3.0.1 |
| 158|androidx.media2:media2-widget |1.3.0 |Xamarin.AndroidX.Media2.Widget |1.3.0.1 |
| 159|androidx.mediarouter:mediarouter |1.7.0 |Xamarin.AndroidX.MediaRouter |1.7.0 |
| 160|androidx.multidex:multidex |2.0.1 |Xamarin.AndroidX.MultiDex |2.0.1.23 |
| 161|androidx.navigation:navigation-common |2.7.7 |Xamarin.AndroidX.Navigation.Common |2.7.7.1 |
| 162|androidx.navigation:navigation-common-ktx |2.7.7 |Xamarin.AndroidX.Navigation.Common.Ktx |2.7.7.1 |
| 163|androidx.navigation:navigation-compose |2.7.7 |Xamarin.AndroidX.Navigation.Compose |2.7.7.1 |
| 164|androidx.navigation:navigation-fragment |2.7.7 |Xamarin.AndroidX.Navigation.Fragment |2.7.7.1 |
| 165|androidx.navigation:navigation-fragment-ktx |2.7.7 |Xamarin.AndroidX.Navigation.Fragment.Ktx |2.7.7.1 |
| 166|androidx.navigation:navigation-runtime |2.7.7 |Xamarin.AndroidX.Navigation.Runtime |2.7.7.1 |
| 167|androidx.navigation:navigation-runtime-ktx |2.7.7 |Xamarin.AndroidX.Navigation.Runtime.Ktx |2.7.7.1 |
| 168|androidx.navigation:navigation-ui |2.7.7 |Xamarin.AndroidX.Navigation.UI |2.7.7.1 |
| 169|androidx.navigation:navigation-ui-ktx |2.7.7 |Xamarin.AndroidX.Navigation.UI.Ktx |2.7.7.1 |
| 170|androidx.paging:paging-common |3.2.1 |Xamarin.AndroidX.Paging.Common |3.2.1.4 |
| 171|androidx.paging:paging-common-ktx |3.2.1 |Xamarin.AndroidX.Paging.Common.Ktx |3.2.1.4 |
| 172|androidx.paging:paging-runtime |3.2.1 |Xamarin.AndroidX.Paging.Runtime |3.2.1.4 |
| 173|androidx.paging:paging-runtime-ktx |3.2.1 |Xamarin.AndroidX.Paging.Runtime.Ktx |3.2.1.4 |
| 174|androidx.paging:paging-rxjava2 |3.2.1 |Xamarin.AndroidX.Paging.RxJava2 |3.2.1.4 |
| 175|androidx.paging:paging-rxjava2-ktx |3.2.1 |Xamarin.AndroidX.Paging.RxJava2.Ktx |3.2.1.4 |
| 176|androidx.palette:palette |1.0.0 |Xamarin.AndroidX.Palette |1.0.0.23 |
| 177|androidx.palette:palette-ktx |1.0.0 |Xamarin.AndroidX.Palette.Palette.Ktx |1.0.0.16 |
| 178|androidx.percentlayout:percentlayout |1.0.0 |Xamarin.AndroidX.PercentLayout |1.0.0.24 |
| 179|androidx.preference:preference |1.2.1 |Xamarin.AndroidX.Preference |1.2.1.4 |
| 180|androidx.preference:preference-ktx |1.2.1 |Xamarin.AndroidX.Preference.Preference.Ktx |1.2.1.4 |
| 181|androidx.print:print |1.0.0 |Xamarin.AndroidX.Print |1.0.0.23 |
| 182|androidx.profileinstaller:profileinstaller |1.3.1 |Xamarin.AndroidX.ProfileInstaller.ProfileInstaller |1.3.1.6 |
| 183|androidx.recommendation:recommendation |1.0.0 |Xamarin.AndroidX.Recommendation |1.0.0.23 |
| 184|androidx.recyclerview:recyclerview |1.3.2 |Xamarin.AndroidX.RecyclerView |1.3.2.2 |
| 185|androidx.recyclerview:recyclerview-selection |1.1.0 |Xamarin.AndroidX.RecyclerView.Selection |1.1.0.17 |
| 186|androidx.resourceinspection:resourceinspection-annotation |1.0.1 |Xamarin.AndroidX.ResourceInspection.Annotation |1.0.1.11 |
| 187|androidx.room:room-common |2.6.1 |Xamarin.AndroidX.Room.Common |2.6.1.1 |
| 188|androidx.room:room-guava |2.6.1 |Xamarin.AndroidX.Room.Guava |2.6.1.1 |
| 189|androidx.room:room-ktx |2.6.1 |Xamarin.AndroidX.Room.Room.Ktx |2.6.1.1 |
| 190|androidx.room:room-runtime |2.6.1 |Xamarin.AndroidX.Room.Runtime |2.6.1.1 |
| 191|androidx.room:room-rxjava2 |2.6.1 |Xamarin.AndroidX.Room.Room.RxJava2 |2.6.1.1 |
| 192|androidx.room:room-rxjava3 |2.6.1 |Xamarin.AndroidX.Room.Room.RxJava3 |2.6.1.1 |
| 193|androidx.savedstate:savedstate |1.2.1 |Xamarin.AndroidX.SavedState |1.2.1.7 |
| 194|androidx.savedstate:savedstate-ktx |1.2.1 |Xamarin.AndroidX.SavedState.SavedState.Ktx |1.2.1.7 |
| 195|androidx.security:security-crypto |1.0.0 |Xamarin.AndroidX.Security.SecurityCrypto |1.0.0.16 |
| 196|androidx.slice:slice-builders |1.0.0 |Xamarin.AndroidX.Slice.Builders |1.0.0.23 |
| 197|androidx.slice:slice-core |1.0.0 |Xamarin.AndroidX.Slice.Core |1.0.0.23 |
| 198|androidx.slice:slice-view |1.0.0 |Xamarin.AndroidX.Slice.View |1.0.0.23 |
| 199|androidx.slidingpanelayout:slidingpanelayout |1.2.0 |Xamarin.AndroidX.SlidingPaneLayout |1.2.0.11 |
| 200|androidx.sqlite:sqlite |2.4.0 |Xamarin.AndroidX.Sqlite |2.4.0.2 |
| 201|androidx.sqlite:sqlite-framework |2.4.0 |Xamarin.AndroidX.Sqlite.Framework |2.4.0.2 |
| 202|androidx.startup:startup-runtime |1.1.1 |Xamarin.AndroidX.Startup.StartupRuntime |1.1.1.11 |
| 203|androidx.swiperefreshlayout:swiperefreshlayout |1.1.0 |Xamarin.AndroidX.SwipeRefreshLayout |1.1.0.18 |
| 204|androidx.tracing:tracing |1.2.0 |Xamarin.AndroidX.Tracing.Tracing |1.2.0.1 |
| 205|androidx.transition:transition |1.4.1 |Xamarin.AndroidX.Transition |1.4.1.16 |
| 206|androidx.tvprovider:tvprovider |1.0.0 |Xamarin.AndroidX.TvProvider |1.0.0.25 |
| 207|androidx.vectordrawable:vectordrawable |1.1.0 |Xamarin.AndroidX.VectorDrawable |1.1.0.23 |
| 208|androidx.vectordrawable:vectordrawable-animated |1.1.0 |Xamarin.AndroidX.VectorDrawable.Animated |1.1.0.23 |
| 209|androidx.versionedparcelable:versionedparcelable |1.2.0 |Xamarin.AndroidX.VersionedParcelable |1.2.0.1 |
| 210|androidx.viewpager:viewpager |1.0.0 |Xamarin.AndroidX.ViewPager |1.0.0.23 |
| 211|androidx.viewpager2:viewpager2 |1.0.0 |Xamarin.AndroidX.ViewPager2 |1.0.0.25 |
| 212|androidx.wear:wear |1.3.0 |Xamarin.AndroidX.Wear |1.3.0.4 |
| 213|androidx.wear:wear-input |1.1.0 |Xamarin.AndroidX.Wear.Input |1.0.0.13 |
| 214|androidx.wear:wear-ongoing |1.0.0 |Xamarin.AndroidX.Wear.Ongoing |1.0.0.13 |
| 215|androidx.wear:wear-phone-interactions |1.0.1 |Xamarin.AndroidX.Wear.PhoneInteractions |1.0.1.11 |
| 216|androidx.wear:wear-remote-interactions |1.0.0 |Xamarin.AndroidX.Wear.RemoteInteractions |1.0.0.13 |
| 217|androidx.wear.compose:compose-foundation |1.3.1 |Xamarin.AndroidX.Wear.Compose.Foundation |1.3.1 |
| 218|androidx.wear.compose:compose-material |1.3.1 |Xamarin.AndroidX.Wear.Compose.Material |1.3.1 |
| 219|androidx.wear.compose:compose-material-core |1.3.1 |Xamarin.AndroidX.Wear.Compose.Material.Core |1.3.1 |
| 220|androidx.wear.compose:compose-navigation |1.3.1 |Xamarin.AndroidX.Wear.Compose.Navigation |1.3.1 |
| 221|androidx.wear.protolayout:protolayout |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout |1.1.0.1 |
| 222|androidx.wear.protolayout:protolayout-expression |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout.Expression |1.1.0.1 |
| 223|androidx.wear.protolayout:protolayout-expression-pipeline |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout.Expression.Pipeline |1.1.0.1 |
| 224|androidx.wear.protolayout:protolayout-proto |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout.Proto |1.1.0.1 |
| 225|androidx.wear.tiles:tiles |1.3.0 |Xamarin.AndroidX.Wear.Tiles |1.3.0.1 |
| 226|androidx.wear.tiles:tiles-material |1.3.0 |Xamarin.AndroidX.Wear.Tiles.Material |1.3.0.1 |
| 227|androidx.wear.tiles:tiles-proto |1.3.0 |Xamarin.AndroidX.Wear.Tiles.Proto |1.3.0.1 |
| 228|androidx.wear.tiles:tiles-renderer |1.1.0 |Xamarin.AndroidX.Wear.Tiles.Renderer |1.1.0.8 |
| 229|androidx.wear.watchface:watchface |1.2.1 |Xamarin.AndroidX.Wear.WatchFace |1.2.1.1 |
| 230|androidx.wear.watchface:watchface-client |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Client |1.2.1.1 |
| 231|androidx.wear.watchface:watchface-client-guava |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.ClientGuava |1.2.1.1 |
| 232|androidx.wear.watchface:watchface-complications |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications |1.2.1.1 |
| 233|androidx.wear.watchface:watchface-complications-data |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Data |1.2.1.1 |
| 234|androidx.wear.watchface:watchface-complications-data-source |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Data.Source |1.2.1.1 |
| 235|androidx.wear.watchface:watchface-complications-data-source-ktx |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Data.Source.Ktx |1.2.1.1 |
| 236|androidx.wear.watchface:watchface-complications-rendering |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Rendering |1.2.1.1 |
| 237|androidx.wear.watchface:watchface-data |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Data |1.2.1.1 |
| 238|androidx.wear.watchface:watchface-guava |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Guava |1.2.1.1 |
| 239|androidx.wear.watchface:watchface-style |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Style |1.2.1.1 |
| 240|androidx.webkit:webkit |1.10.0 |Xamarin.AndroidX.WebKit |1.10.0.1 |
| 241|androidx.window:window |1.2.0 |Xamarin.AndroidX.Window |1.2.0.2 |
| 242|androidx.window:window-extensions |1.0.0-alpha01 |Xamarin.AndroidX.Window.WindowExtensions |1.0.0.18-alpha01 |
| 243|androidx.window:window-java |1.2.0 |Xamarin.AndroidX.Window.WindowJava |1.2.0.2 |
| 244|androidx.window:window-rxjava2 |1.2.0 |Xamarin.AndroidX.Window.WindowRxJava2 |1.2.0.2 |
| 245|androidx.window:window-rxjava3 |1.2.0 |Xamarin.AndroidX.Window.WindowRxJava3 |1.2.0.2 |
| 246|androidx.window.extensions.core:core |1.0.0 |Xamarin.AndroidX.Window.Extensions.Core.Core |1.0.0.5 |
| 247|androidx.work:work-runtime |2.9.0 |Xamarin.AndroidX.Work.Runtime |2.9.0.1 |
| 248|androidx.work:work-runtime-ktx |2.9.0 |Xamarin.AndroidX.Work.Work.Runtime.Ktx |2.9.0.1 |
| 249|com.android.installreferrer:installreferrer |1.1.2 |Xamarin.Google.Android.InstallReferrer |1.1.2 |
| 250|com.google.accompanist:accompanist-appcompat-theme |0.34.0 |Xamarin.Google.Accompanist.AppCompat.Theme |0.34.0.1 |
| 251|com.google.accompanist:accompanist-drawablepainter |0.34.0 |Xamarin.Google.Accompanist.DrawablePainter |0.34.0.1 |
| 252|com.google.accompanist:accompanist-flowlayout |0.34.0 |Xamarin.Google.Accompanist.FlowLayout |0.34.0.1 |
| 253|com.google.accompanist:accompanist-pager |0.34.0 |Xamarin.Google.Accompanist.Pager |0.34.0.1 |
| 254|com.google.accompanist:accompanist-pager-indicators |0.34.0 |Xamarin.Google.Accompanist.Pager.Indicators |0.34.0.1 |
| 255|com.google.accompanist:accompanist-permissions |0.34.0 |Xamarin.Google.Accompanist.Permissions |0.34.0.1 |
| 256|com.google.accompanist:accompanist-placeholder |0.34.0 |Xamarin.Google.Accompanist.Placeholder |0.34.0.1 |
| 257|com.google.accompanist:accompanist-placeholder-material |0.34.0 |Xamarin.Google.Accompanist.Placeholder.Material |0.34.0.1 |
| 258|com.google.accompanist:accompanist-swiperefresh |0.34.0 |Xamarin.Google.Accompanist.SwipeRefresh |0.34.0.1 |
| 259|com.google.accompanist:accompanist-systemuicontroller |0.34.0 |Xamarin.Google.Accompanist.SystemUIController |0.34.0.1 |
| 260|com.google.android.material:compose-theme-adapter |1.1.18 |Xamarin.Google.Android.Material.Compose.Theme.Adapter |1.1.18.9 |
| 261|com.google.android.material:compose-theme-adapter-3 |1.0.18 |Xamarin.Google.Android.Material.Compose.Theme.Adapter3 |1.0.18.8 |
| 262|com.google.android.material:material |1.10.0 |Xamarin.Google.Android.Material |1.10.0.3 |
| 263|com.google.assistant.appactions:suggestions |1.0.0 |Xamarin.Google.Assistant.AppActions.Suggestions |1.0.0.9 |
| 264|com.google.assistant.appactions:widgets |0.0.1 |Xamarin.Google.Assistant.AppActions.Widgets |0.0.1.10 |
| 265|com.google.auto.value:auto-value-annotations |1.10.4 |Xamarin.Google.AutoValue.Annotations |1.10.4.3 |
| 266|com.google.code.gson:gson |2.10.1 |GoogleGson |2.10.1.8 |
| 267|com.google.crypto.tink:tink-android |1.13.0 |Xamarin.Google.Crypto.Tink.Android |1.13.0 |
| 268|com.google.flogger:flogger |0.8 |Xamarin.Flogger |0.8.0.2 |
| 269|com.google.flogger:flogger-system-backend |0.8 |Xamarin.Flogger.SystemBackend |0.8.0.2 |
| 270|com.google.guava:failureaccess |1.0.2 |Xamarin.Google.Guava.FailureAccess |1.0.2.2 |
| 271|com.google.guava:guava |33.1.0-android |Xamarin.Google.Guava |33.1.0 |
| 272|com.google.guava:listenablefuture |1.0 |Xamarin.Google.Guava.ListenableFuture |1.0.0.18 |
| 273|com.google.j2objc:j2objc-annotations |3.0.0 |Xamarin.Google.J2Objc.Annotations |3.0.0 |
| 274|dev.chrisbanes.snapper:snapper |0.3.0 |Xamarin.Dev.ChrisBanes.Snapper |0.3.0.9 |
| 275|io.github.aakira:napier |2.7.1 |Xamarin.AAkira.Napier |2.7.1.1 |
| 276|io.reactivex.rxjava2:rxandroid |2.1.1 |Xamarin.Android.ReactiveX.RxAndroid |2.1.1.9 |
| 277|io.reactivex.rxjava2:rxjava |2.2.21 |Xamarin.Android.ReactiveX.RxJava |2.2.21.16 |
| 278|io.reactivex.rxjava2:rxkotlin |2.4.0 |Xamarin.Android.ReactiveX.RxKotlin |2.4.0.9 |
| 279|io.reactivex.rxjava3:rxandroid |3.0.2 |Xamarin.Android.ReactiveX.RxJava3.RxAndroid |3.0.2.8 |
| 280|io.reactivex.rxjava3:rxjava |3.1.8 |Xamarin.Android.ReactiveX.RxJava3.RxJava |3.1.8.3 |
| 281|io.reactivex.rxjava3:rxkotlin |3.0.1 |Xamarin.Android.ReactiveX.RxJava3.RxKotlin |3.0.1.9 |
| 282|org.checkerframework:checker-compat-qual |2.5.6 |Xamarin.CheckerFramework.CheckerCompatQual |2.5.6.2 |
| 283|org.checkerframework:checker-qual |3.42.0 |Xamarin.CheckerFramework.CheckerQual |3.42.0.1 |
| 284|org.jetbrains:annotations |24.1.0 |Xamarin.Jetbrains.Annotations |24.1.0.2 |
| 285|org.jetbrains.kotlin:kotlin-android-extensions-runtime |1.9.23 |Xamarin.Kotlin.Android.Extensions.Runtime |1.9.23 |
| 286|org.jetbrains.kotlin:kotlin-parcelize-runtime |1.9.23 |Xamarin.Kotlin.Parcelize.Runtime |1.9.23 |
| 287|org.jetbrains.kotlin:kotlin-reflect |1.9.23 |Xamarin.Kotlin.Reflect |1.9.23 |
| 288|org.jetbrains.kotlin:kotlin-stdlib |1.9.23 |Xamarin.Kotlin.StdLib |1.9.23 |
| 289|org.jetbrains.kotlin:kotlin-stdlib-common |1.9.23 |Xamarin.Kotlin.StdLib.Common |1.9.23 |
| 290|org.jetbrains.kotlin:kotlin-stdlib-jdk7 |1.9.23 |Xamarin.Kotlin.StdLib.Jdk7 |1.9.23 |
| 291|org.jetbrains.kotlin:kotlin-stdlib-jdk8 |1.9.23 |Xamarin.Kotlin.StdLib.Jdk8 |1.9.23 |
| 292|org.jetbrains.kotlinx:atomicfu |0.17.0 |Xamarin.KotlinX.AtomicFU |0.17.0 |
| 293|org.jetbrains.kotlinx:atomicfu-jvm |0.17.0 |Xamarin.KotlinX.AtomicFU.Jvm |0.17.0 |
| 294|org.jetbrains.kotlinx:kotlinx-coroutines-android |1.8.0 |Xamarin.KotlinX.Coroutines.Android |1.8.0.1 |
| 295|org.jetbrains.kotlinx:kotlinx-coroutines-core |1.8.0 |Xamarin.KotlinX.Coroutines.Core |1.8.0.1 |
| 296|org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm |1.8.0 |Xamarin.KotlinX.Coroutines.Core.Jvm |1.8.0.1 |
| 297|org.jetbrains.kotlinx:kotlinx-coroutines-guava |1.8.0 |Xamarin.KotlinX.Coroutines.Guava |1.8.0.1 |
| 298|org.jetbrains.kotlinx:kotlinx-coroutines-jdk8 |1.8.0 |Xamarin.KotlinX.Coroutines.Jdk8 |1.8.0.1 |
| 299|org.jetbrains.kotlinx:kotlinx-coroutines-play-services |1.8.0 |Xamarin.KotlinX.Coroutines.Play.Services |1.8.0.1 |
| 300|org.jetbrains.kotlinx:kotlinx-coroutines-reactive |1.8.0 |Xamarin.KotlinX.Coroutines.Reactive |1.8.0.1 |
| 301|org.jetbrains.kotlinx:kotlinx-coroutines-rx2 |1.8.0 |Xamarin.KotlinX.Coroutines.Rx2 |1.8.0.1 |
| 302|org.jetbrains.kotlinx:kotlinx-coroutines-rx3 |1.8.0 |Xamarin.KotlinX.Coroutines.Rx3 |1.8.0.1 |
| 303|org.jetbrains.kotlinx:kotlinx-serialization-core |1.6.3 |Xamarin.KotlinX.Serialization.Core |1.6.3 |
| 304|org.jetbrains.kotlinx:kotlinx-serialization-core-jvm |1.6.3 |Xamarin.KotlinX.Serialization.Core.Jvm |1.6.3 |
| 305|org.jetbrains.kotlinx:kotlinx-serialization-protobuf |1.6.3 |Xamarin.KotlinX.Serialization.Protobuf |1.6.3 |
| 306|org.jetbrains.kotlinx:kotlinx-serialization-protobuf-jvm |1.6.3 |Xamarin.KotlinX.Serialization.Protobuf.Jvm |1.6.3 |
| 307|org.reactivestreams:reactive-streams |1.0.4 |Xamarin.Android.ReactiveStreams |1.0.4.10 |
| 1|androidx.activity:activity |1.9.0 |Xamarin.AndroidX.Activity |1.9.0.1 |
| 2|androidx.activity:activity-compose |1.9.0 |Xamarin.AndroidX.Activity.Compose |1.9.0.1 |
| 3|androidx.activity:activity-ktx |1.9.0 |Xamarin.AndroidX.Activity.Ktx |1.9.0.1 |
| 4|androidx.ads:ads-identifier |1.0.0-alpha05 |Xamarin.AndroidX.Ads.Identifier |1.0.0.23-alpha05 |
| 5|androidx.ads:ads-identifier-common |1.0.0-alpha05 |Xamarin.AndroidX.Ads.IdentifierCommon |1.0.0.23-alpha05 |
| 6|androidx.ads:ads-identifier-provider |1.0.0-alpha05 |Xamarin.AndroidX.Ads.IdentifierProvider |1.0.0.23-alpha05 |
| 7|androidx.annotation:annotation |1.7.1 |Xamarin.AndroidX.Annotation |1.7.1.2 |
| 8|androidx.annotation:annotation-experimental |1.4.1 |Xamarin.AndroidX.Annotation.Experimental |1.4.1.1 |
| 9|androidx.annotation:annotation-jvm |1.7.1 |Xamarin.AndroidX.Annotation.Jvm |1.7.1.2 |
| 10|androidx.appcompat:appcompat |1.6.1 |Xamarin.AndroidX.AppCompat |1.6.1.8 |
| 11|androidx.appcompat:appcompat-resources |1.6.1 |Xamarin.AndroidX.AppCompat.AppCompatResources |1.6.1.9 |
| 12|androidx.arch.core:core-common |2.2.0 |Xamarin.AndroidX.Arch.Core.Common |2.2.0.8 |
| 13|androidx.arch.core:core-runtime |2.2.0 |Xamarin.AndroidX.Arch.Core.Runtime |2.2.0.8 |
| 14|androidx.asynclayoutinflater:asynclayoutinflater |1.0.0 |Xamarin.AndroidX.AsyncLayoutInflater |1.0.0.24 |
| 15|androidx.autofill:autofill |1.1.0 |Xamarin.AndroidX.AutoFill |1.1.0.23 |
| 16|androidx.biometric:biometric |1.1.0 |Xamarin.AndroidX.Biometric |1.1.0.20 |
| 17|androidx.browser:browser |1.8.0 |Xamarin.AndroidX.Browser |1.8.0.1 |
| 18|androidx.camera:camera-camera2 |1.3.3 |Xamarin.AndroidX.Camera.Camera2 |1.3.3.1 |
| 19|androidx.camera:camera-core |1.3.3 |Xamarin.AndroidX.Camera.Core |1.3.3.1 |
| 20|androidx.camera:camera-extensions |1.3.3 |Xamarin.AndroidX.Camera.Extensions |1.3.3.1 |
| 21|androidx.camera:camera-lifecycle |1.3.3 |Xamarin.AndroidX.Camera.Lifecycle |1.3.3.1 |
| 22|androidx.camera:camera-video |1.3.3 |Xamarin.AndroidX.Camera.Video |1.3.3.1 |
| 23|androidx.camera:camera-view |1.3.3 |Xamarin.AndroidX.Camera.View |1.3.3.1 |
| 24|androidx.car:car |1.0.0-alpha7 |Xamarin.AndroidX.Car.Car |1.0.0.22-alpha7 |
| 25|androidx.car:car-cluster |1.0.0-alpha5 |Xamarin.AndroidX.Car.Cluster |1.0.0.22-alpha5 |
| 26|androidx.car.app:app |1.2.0 |Xamarin.AndroidX.Car.App.App |1.2.0.9 |
| 27|androidx.cardview:cardview |1.0.0 |Xamarin.AndroidX.CardView |1.0.0.26 |
| 28|androidx.collection:collection |1.4.0 |Xamarin.AndroidX.Collection |1.4.0.3 |
| 29|androidx.collection:collection-jvm |1.4.0 |Xamarin.AndroidX.Collection.Jvm |1.4.0.2 |
| 30|androidx.collection:collection-ktx |1.4.0 |Xamarin.AndroidX.Collection.Ktx |1.4.0.2 |
| 31|androidx.compose.animation:animation |1.6.6 |Xamarin.AndroidX.Compose.Animation |1.6.6.1 |
| 32|androidx.compose.animation:animation-android |1.6.6 |Xamarin.AndroidX.Compose.Animation.Android |1.6.6.1 |
| 33|androidx.compose.animation:animation-core |1.6.6 |Xamarin.AndroidX.Compose.Animation.Core |1.6.6.1 |
| 34|androidx.compose.animation:animation-core-android |1.6.6 |Xamarin.AndroidX.Compose.Animation.Core.Android |1.6.6.1 |
| 35|androidx.compose.animation:animation-graphics |1.6.6 |Xamarin.AndroidX.Compose.Animation.Graphics |1.6.6.1 |
| 36|androidx.compose.animation:animation-graphics-android |1.6.6 |Xamarin.AndroidX.Compose.Animation.Graphics.Android |1.6.6.1 |
| 37|androidx.compose.foundation:foundation |1.6.6 |Xamarin.AndroidX.Compose.Foundation |1.6.6.1 |
| 38|androidx.compose.foundation:foundation-android |1.6.6 |Xamarin.AndroidX.Compose.Foundation.Android |1.6.6.1 |
| 39|androidx.compose.foundation:foundation-layout |1.6.6 |Xamarin.AndroidX.Compose.Foundation.Layout |1.6.6.1 |
| 40|androidx.compose.foundation:foundation-layout-android |1.6.6 |Xamarin.AndroidX.Compose.Foundation.Layout.Android |1.6.6.1 |
| 41|androidx.compose.material:material |1.6.6 |Xamarin.AndroidX.Compose.Material |1.6.6.1 |
| 42|androidx.compose.material:material-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Android |1.6.6.1 |
| 43|androidx.compose.material:material-icons-core |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Core |1.6.6.1 |
| 44|androidx.compose.material:material-icons-core-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Core.Android |1.6.6.1 |
| 45|androidx.compose.material:material-icons-extended |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Extended |1.6.6.1 |
| 46|androidx.compose.material:material-icons-extended-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Icons.Extended.Android |1.6.6.1 |
| 47|androidx.compose.material:material-ripple |1.6.6 |Xamarin.AndroidX.Compose.Material.Ripple |1.6.6.1 |
| 48|androidx.compose.material:material-ripple-android |1.6.6 |Xamarin.AndroidX.Compose.Material.Ripple.Android |1.6.6.1 |
| 49|androidx.compose.material3:material3 |1.2.1 |Xamarin.AndroidX.Compose.Material3 |1.2.1.1 |
| 50|androidx.compose.material3:material3-android |1.2.1 |Xamarin.AndroidX.Compose.Material3Android |1.2.1.1 |
| 51|androidx.compose.material3:material3-window-size-class |1.2.1 |Xamarin.AndroidX.Compose.Material3.WindowSizeClass |1.2.1.1 |
| 52|androidx.compose.material3:material3-window-size-class-android |1.2.1 |Xamarin.AndroidX.Compose.Material3.WindowSizeClassAndroid |1.2.1.1 |
| 53|androidx.compose.runtime:runtime |1.6.6 |Xamarin.AndroidX.Compose.Runtime |1.6.6.1 |
| 54|androidx.compose.runtime:runtime-android |1.6.6 |Xamarin.AndroidX.Compose.Runtime.Android |1.6.6.1 |
| 55|androidx.compose.runtime:runtime-livedata |1.6.6 |Xamarin.AndroidX.Compose.Runtime.LiveData |1.6.6.1 |
| 56|androidx.compose.runtime:runtime-rxjava2 |1.6.6 |Xamarin.AndroidX.Compose.Runtime.RxJava2 |1.6.6.1 |
| 57|androidx.compose.runtime:runtime-rxjava3 |1.6.6 |Xamarin.AndroidX.Compose.Runtime.RxJava3 |1.6.6.1 |
| 58|androidx.compose.runtime:runtime-saveable |1.6.6 |Xamarin.AndroidX.Compose.Runtime.Saveable |1.6.6.1 |
| 59|androidx.compose.runtime:runtime-saveable-android |1.6.6 |Xamarin.AndroidX.Compose.Runtime.Saveable.Android |1.6.6.1 |
| 60|androidx.compose.ui:ui |1.6.6 |Xamarin.AndroidX.Compose.UI |1.6.6.1 |
| 61|androidx.compose.ui:ui-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Android |1.6.6.1 |
| 62|androidx.compose.ui:ui-geometry |1.6.6 |Xamarin.AndroidX.Compose.UI.Geometry |1.6.6.1 |
| 63|androidx.compose.ui:ui-geometry-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Geometry.Android |1.6.6.1 |
| 64|androidx.compose.ui:ui-graphics |1.6.6 |Xamarin.AndroidX.Compose.UI.Graphics |1.6.6.1 |
| 65|androidx.compose.ui:ui-graphics-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Graphics.Android |1.6.6.1 |
| 66|androidx.compose.ui:ui-text |1.6.6 |Xamarin.AndroidX.Compose.UI.Text |1.6.6.1 |
| 67|androidx.compose.ui:ui-text-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Text.Android |1.6.6.1 |
| 68|androidx.compose.ui:ui-tooling |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling |1.6.6.1 |
| 69|androidx.compose.ui:ui-tooling-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Android |1.6.6.1 |
| 70|androidx.compose.ui:ui-tooling-data |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Data |1.6.6.1 |
| 71|androidx.compose.ui:ui-tooling-data-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Data.Android |1.6.6.1 |
| 72|androidx.compose.ui:ui-tooling-preview |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Preview |1.6.6.1 |
| 73|androidx.compose.ui:ui-tooling-preview-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Tooling.Preview.Android |1.6.6.1 |
| 74|androidx.compose.ui:ui-unit |1.6.6 |Xamarin.AndroidX.Compose.UI.Unit |1.6.6.1 |
| 75|androidx.compose.ui:ui-unit-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Unit.Android |1.6.6.1 |
| 76|androidx.compose.ui:ui-util |1.6.6 |Xamarin.AndroidX.Compose.UI.Util |1.6.6.1 |
| 77|androidx.compose.ui:ui-util-android |1.6.6 |Xamarin.AndroidX.Compose.UI.Util.Android |1.6.6.1 |
| 78|androidx.compose.ui:ui-viewbinding |1.6.6 |Xamarin.AndroidX.Compose.UI.ViewBinding |1.6.6.1 |
| 79|androidx.concurrent:concurrent-futures |1.1.0 |Xamarin.AndroidX.Concurrent.Futures |1.1.0.19 |
| 80|androidx.concurrent:concurrent-futures-ktx |1.1.0 |Xamarin.AndroidX.Concurrent.Futures.Ktx |1.1.0.8 |
| 81|androidx.constraintlayout:constraintlayout |2.1.4 |Xamarin.AndroidX.ConstraintLayout |2.1.4.11 |
| 82|androidx.constraintlayout:constraintlayout-core |1.0.4 |Xamarin.AndroidX.ConstraintLayout.Core |1.0.4.11 |
| 83|androidx.constraintlayout:constraintlayout-solver |2.0.4 |Xamarin.AndroidX.ConstraintLayout.Solver |2.0.4.19 |
| 84|androidx.contentpager:contentpager |1.0.0 |Xamarin.AndroidX.ContentPager |1.0.0.24 |
| 85|androidx.coordinatorlayout:coordinatorlayout |1.2.0 |Xamarin.AndroidX.CoordinatorLayout |1.2.0.12 |
| 86|androidx.core:core |1.13.0 |Xamarin.AndroidX.Core |1.13.0.1 |
| 87|androidx.core:core-animation |1.0.0-alpha02 |Xamarin.AndroidX.Core.Animation |1.0.0.22-alpha02 |
| 88|androidx.core:core-google-shortcuts |1.1.0 |Xamarin.AndroidX.Core.GoogleShortcuts |1.1.0.9 |
| 89|androidx.core:core-ktx |1.13.0 |Xamarin.AndroidX.Core.Core.Ktx |1.13.0.1 |
| 90|androidx.core:core-role |1.0.0 |Xamarin.AndroidX.Core.Role |1.0.0.22 |
| 91|androidx.core:core-splashscreen |1.0.1 |Xamarin.AndroidX.Core.SplashScreen |1.0.1.7 |
| 92|androidx.credentials:credentials |1.2.2 |Xamarin.AndroidX.Credentials |1.2.2.1 |
| 93|androidx.credentials:credentials-play-services-auth |1.2.2 |Xamarin.AndroidX.Credentials.PlayServicesAuth |1.2.2.1 |
| 94|androidx.cursoradapter:cursoradapter |1.0.0 |Xamarin.AndroidX.CursorAdapter |1.0.0.24 |
| 95|androidx.customview:customview |1.1.0 |Xamarin.AndroidX.CustomView |1.1.0.23 |
| 96|androidx.customview:customview-poolingcontainer |1.0.0 |Xamarin.AndroidX.CustomView.PoolingContainer |1.0.0.10 |
| 97|androidx.databinding:databinding-adapters |8.3.2 |Xamarin.AndroidX.DataBinding.DataBindingAdapters |8.3.2.1 |
| 98|androidx.databinding:databinding-common |8.3.2 |Xamarin.AndroidX.DataBinding.DataBindingCommon |8.3.2.1 |
| 99|androidx.databinding:databinding-runtime |8.3.2 |Xamarin.AndroidX.DataBinding.DataBindingRuntime |8.3.2.1 |
| 100|androidx.databinding:viewbinding |8.3.2 |Xamarin.AndroidX.DataBinding.ViewBinding |8.3.2.1 |
| 101|androidx.datastore:datastore |1.1.0 |Xamarin.AndroidX.DataStore |1.1.0.1 |
| 102|androidx.datastore:datastore-android |1.1.0 |Xamarin.AndroidX.DataStore.Android |1.1.0.1 |
| 103|androidx.datastore:datastore-core |1.1.0 |Xamarin.AndroidX.DataStore.Core |1.1.0.1 |
| 104|androidx.datastore:datastore-core-android |1.1.0 |Xamarin.AndroidX.DataStore.Core.Android |1.1.0.1 |
| 105|androidx.datastore:datastore-core-jvm |1.1.0 |Xamarin.AndroidX.DataStore.Core.Jvm |1.1.0.1 |
| 106|androidx.datastore:datastore-core-okio |1.1.0 |Xamarin.AndroidX.DataStore.Core.OkIO |1.1.0.1 |
| 107|androidx.datastore:datastore-core-okio-jvm |1.1.0 |Xamarin.AndroidX.DataStore.Core.OkIO.Jvm |1.1.0.1 |
| 108|androidx.datastore:datastore-preferences |1.1.0 |Xamarin.AndroidX.DataStore.Preferences |1.1.0.1 |
| 109|androidx.datastore:datastore-preferences-android |1.1.0 |Xamarin.AndroidX.DataStore.Preferences.Android |1.1.0.1 |
| 110|androidx.datastore:datastore-preferences-core |1.1.0 |Xamarin.AndroidX.DataStore.Preferences.Core |1.1.0.1 |
| 111|androidx.datastore:datastore-preferences-core-jvm |1.1.0 |Xamarin.AndroidX.DataStore.Preferences.Core.Jvm |1.1.0.1 |
| 112|androidx.datastore:datastore-rxjava2 |1.1.0 |Xamarin.AndroidX.DataStore.RxJava2 |1.1.0.1 |
| 113|androidx.datastore:datastore-rxjava3 |1.1.0 |Xamarin.AndroidX.DataStore.RxJava3 |1.1.0.1 |
| 114|androidx.documentfile:documentfile |1.0.1 |Xamarin.AndroidX.DocumentFile |1.0.1.24 |
| 115|androidx.drawerlayout:drawerlayout |1.2.0 |Xamarin.AndroidX.DrawerLayout |1.2.0.8 |
| 116|androidx.dynamicanimation:dynamicanimation |1.0.0 |Xamarin.AndroidX.DynamicAnimation |1.0.0.24 |
| 117|androidx.emoji:emoji |1.1.0 |Xamarin.AndroidX.Emoji |1.1.0.19 |
| 118|androidx.emoji:emoji-appcompat |1.1.0 |Xamarin.AndroidX.Emoji.AppCompat |1.1.0.19 |
| 119|androidx.emoji:emoji-bundled |1.1.0 |Xamarin.AndroidX.Emoji.Bundled |1.1.0.19 |
| 120|androidx.emoji2:emoji2 |1.4.0 |Xamarin.AndroidX.Emoji2 |1.4.0.5 |
| 121|androidx.emoji2:emoji2-views-helper |1.4.0 |Xamarin.AndroidX.Emoji2.ViewsHelper |1.4.0.5 |
| 122|androidx.enterprise:enterprise-feedback |1.1.0 |Xamarin.AndroidX.Enterprise.Feedback |1.1.0.10 |
| 123|androidx.exifinterface:exifinterface |1.3.7 |Xamarin.AndroidX.ExifInterface |1.3.7.2 |
| 124|androidx.fragment:fragment |1.6.2 |Xamarin.AndroidX.Fragment |1.6.2.3 |
| 125|androidx.fragment:fragment-ktx |1.6.2 |Xamarin.AndroidX.Fragment.Ktx |1.6.2.3 |
| 126|androidx.gridlayout:gridlayout |1.0.0 |Xamarin.AndroidX.GridLayout |1.0.0.24 |
| 127|androidx.heifwriter:heifwriter |1.0.0 |Xamarin.AndroidX.HeifWriter |1.0.0.24 |
| 128|androidx.interpolator:interpolator |1.0.0 |Xamarin.AndroidX.Interpolator |1.0.0.24 |
| 129|androidx.leanback:leanback |1.0.0 |Xamarin.AndroidX.Leanback |1.0.0.26 |
| 130|androidx.leanback:leanback-preference |1.0.0 |Xamarin.AndroidX.Leanback.Preference |1.0.0.24 |
| 131|androidx.legacy:legacy-preference-v14 |1.0.0 |Xamarin.AndroidX.Legacy.Preference.V14 |1.0.0.24 |
| 132|androidx.legacy:legacy-support-core-ui |1.0.0 |Xamarin.AndroidX.Legacy.Support.Core.UI |1.0.0.25 |
| 133|androidx.legacy:legacy-support-core-utils |1.0.0 |Xamarin.AndroidX.Legacy.Support.Core.Utils |1.0.0.24 |
| 134|androidx.legacy:legacy-support-v13 |1.0.0 |Xamarin.AndroidX.Legacy.Support.V13 |1.0.0.24 |
| 135|androidx.legacy:legacy-support-v4 |1.0.0 |Xamarin.AndroidX.Legacy.Support.V4 |1.0.0.24 |
| 136|androidx.lifecycle:lifecycle-common |2.7.0 |Xamarin.AndroidX.Lifecycle.Common |2.7.0.2 |
| 137|androidx.lifecycle:lifecycle-common-java8 |2.7.0 |Xamarin.AndroidX.Lifecycle.Common.Java8 |2.7.0.2 |
| 138|androidx.lifecycle:lifecycle-extensions |2.2.0 |Xamarin.AndroidX.Lifecycle.Extensions |2.2.0.24 |
| 139|androidx.lifecycle:lifecycle-livedata |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData |2.7.0.2 |
| 140|androidx.lifecycle:lifecycle-livedata-core |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData.Core |2.7.0.2 |
| 141|androidx.lifecycle:lifecycle-livedata-core-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData.Core.Ktx |2.7.0.2 |
| 142|androidx.lifecycle:lifecycle-livedata-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.LiveData.Ktx |2.7.0.2 |
| 143|androidx.lifecycle:lifecycle-process |2.7.0 |Xamarin.AndroidX.Lifecycle.Process |2.7.0.2 |
| 144|androidx.lifecycle:lifecycle-reactivestreams |2.7.0 |Xamarin.AndroidX.Lifecycle.ReactiveStreams |2.7.0.2 |
| 145|androidx.lifecycle:lifecycle-reactivestreams-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.ReactiveStreams.Ktx |2.7.0.2 |
| 146|androidx.lifecycle:lifecycle-runtime |2.7.0 |Xamarin.AndroidX.Lifecycle.Runtime |2.7.0.2 |
| 147|androidx.lifecycle:lifecycle-runtime-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.Runtime.Ktx |2.7.0.2 |
| 148|androidx.lifecycle:lifecycle-service |2.7.0 |Xamarin.AndroidX.Lifecycle.Service |2.7.0.2 |
| 149|androidx.lifecycle:lifecycle-viewmodel |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModel |2.7.0.2 |
| 150|androidx.lifecycle:lifecycle-viewmodel-compose |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModel.Compose |2.7.0.2 |
| 151|androidx.lifecycle:lifecycle-viewmodel-ktx |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModel.Ktx |2.7.0.2 |
| 152|androidx.lifecycle:lifecycle-viewmodel-savedstate |2.7.0 |Xamarin.AndroidX.Lifecycle.ViewModelSavedState |2.7.0.2 |
| 153|androidx.loader:loader |1.1.0 |Xamarin.AndroidX.Loader |1.1.0.24 |
| 154|androidx.localbroadcastmanager:localbroadcastmanager |1.1.0 |Xamarin.AndroidX.LocalBroadcastManager |1.1.0.12 |
| 155|androidx.media:media |1.7.0 |Xamarin.AndroidX.Media |1.7.0.2 |
| 156|androidx.media2:media2-common |1.3.0 |Xamarin.AndroidX.Media2.Common |1.3.0.2 |
| 157|androidx.media2:media2-session |1.3.0 |Xamarin.AndroidX.Media2.Session |1.3.0.2 |
| 158|androidx.media2:media2-widget |1.3.0 |Xamarin.AndroidX.Media2.Widget |1.3.0.2 |
| 159|androidx.mediarouter:mediarouter |1.7.0 |Xamarin.AndroidX.MediaRouter |1.7.0.1 |
| 160|androidx.multidex:multidex |2.0.1 |Xamarin.AndroidX.MultiDex |2.0.1.24 |
| 161|androidx.navigation:navigation-common |2.7.7 |Xamarin.AndroidX.Navigation.Common |2.7.7.2 |
| 162|androidx.navigation:navigation-common-ktx |2.7.7 |Xamarin.AndroidX.Navigation.Common.Ktx |2.7.7.2 |
| 163|androidx.navigation:navigation-compose |2.7.7 |Xamarin.AndroidX.Navigation.Compose |2.7.7.2 |
| 164|androidx.navigation:navigation-fragment |2.7.7 |Xamarin.AndroidX.Navigation.Fragment |2.7.7.2 |
| 165|androidx.navigation:navigation-fragment-ktx |2.7.7 |Xamarin.AndroidX.Navigation.Fragment.Ktx |2.7.7.2 |
| 166|androidx.navigation:navigation-runtime |2.7.7 |Xamarin.AndroidX.Navigation.Runtime |2.7.7.2 |
| 167|androidx.navigation:navigation-runtime-ktx |2.7.7 |Xamarin.AndroidX.Navigation.Runtime.Ktx |2.7.7.2 |
| 168|androidx.navigation:navigation-ui |2.7.7 |Xamarin.AndroidX.Navigation.UI |2.7.7.2 |
| 169|androidx.navigation:navigation-ui-ktx |2.7.7 |Xamarin.AndroidX.Navigation.UI.Ktx |2.7.7.2 |
| 170|androidx.paging:paging-common |3.2.1 |Xamarin.AndroidX.Paging.Common |3.2.1.5 |
| 171|androidx.paging:paging-common-ktx |3.2.1 |Xamarin.AndroidX.Paging.Common.Ktx |3.2.1.5 |
| 172|androidx.paging:paging-runtime |3.2.1 |Xamarin.AndroidX.Paging.Runtime |3.2.1.5 |
| 173|androidx.paging:paging-runtime-ktx |3.2.1 |Xamarin.AndroidX.Paging.Runtime.Ktx |3.2.1.5 |
| 174|androidx.paging:paging-rxjava2 |3.2.1 |Xamarin.AndroidX.Paging.RxJava2 |3.2.1.5 |
| 175|androidx.paging:paging-rxjava2-ktx |3.2.1 |Xamarin.AndroidX.Paging.RxJava2.Ktx |3.2.1.5 |
| 176|androidx.palette:palette |1.0.0 |Xamarin.AndroidX.Palette |1.0.0.24 |
| 177|androidx.palette:palette-ktx |1.0.0 |Xamarin.AndroidX.Palette.Palette.Ktx |1.0.0.17 |
| 178|androidx.percentlayout:percentlayout |1.0.0 |Xamarin.AndroidX.PercentLayout |1.0.0.25 |
| 179|androidx.preference:preference |1.2.1 |Xamarin.AndroidX.Preference |1.2.1.5 |
| 180|androidx.preference:preference-ktx |1.2.1 |Xamarin.AndroidX.Preference.Preference.Ktx |1.2.1.5 |
| 181|androidx.print:print |1.0.0 |Xamarin.AndroidX.Print |1.0.0.24 |
| 182|androidx.profileinstaller:profileinstaller |1.3.1 |Xamarin.AndroidX.ProfileInstaller.ProfileInstaller |1.3.1.7 |
| 183|androidx.recommendation:recommendation |1.0.0 |Xamarin.AndroidX.Recommendation |1.0.0.24 |
| 184|androidx.recyclerview:recyclerview |1.3.2 |Xamarin.AndroidX.RecyclerView |1.3.2.3 |
| 185|androidx.recyclerview:recyclerview-selection |1.1.0 |Xamarin.AndroidX.RecyclerView.Selection |1.1.0.18 |
| 186|androidx.resourceinspection:resourceinspection-annotation |1.0.1 |Xamarin.AndroidX.ResourceInspection.Annotation |1.0.1.12 |
| 187|androidx.room:room-common |2.6.1 |Xamarin.AndroidX.Room.Common |2.6.1.2 |
| 188|androidx.room:room-guava |2.6.1 |Xamarin.AndroidX.Room.Guava |2.6.1.2 |
| 189|androidx.room:room-ktx |2.6.1 |Xamarin.AndroidX.Room.Room.Ktx |2.6.1.2 |
| 190|androidx.room:room-runtime |2.6.1 |Xamarin.AndroidX.Room.Runtime |2.6.1.2 |
| 191|androidx.room:room-rxjava2 |2.6.1 |Xamarin.AndroidX.Room.Room.RxJava2 |2.6.1.2 |
| 192|androidx.room:room-rxjava3 |2.6.1 |Xamarin.AndroidX.Room.Room.RxJava3 |2.6.1.2 |
| 193|androidx.savedstate:savedstate |1.2.1 |Xamarin.AndroidX.SavedState |1.2.1.8 |
| 194|androidx.savedstate:savedstate-ktx |1.2.1 |Xamarin.AndroidX.SavedState.SavedState.Ktx |1.2.1.8 |
| 195|androidx.security:security-crypto |1.0.0 |Xamarin.AndroidX.Security.SecurityCrypto |1.0.0.17 |
| 196|androidx.slice:slice-builders |1.0.0 |Xamarin.AndroidX.Slice.Builders |1.0.0.24 |
| 197|androidx.slice:slice-core |1.0.0 |Xamarin.AndroidX.Slice.Core |1.0.0.24 |
| 198|androidx.slice:slice-view |1.0.0 |Xamarin.AndroidX.Slice.View |1.0.0.24 |
| 199|androidx.slidingpanelayout:slidingpanelayout |1.2.0 |Xamarin.AndroidX.SlidingPaneLayout |1.2.0.12 |
| 200|androidx.sqlite:sqlite |2.4.0 |Xamarin.AndroidX.Sqlite |2.4.0.3 |
| 201|androidx.sqlite:sqlite-framework |2.4.0 |Xamarin.AndroidX.Sqlite.Framework |2.4.0.3 |
| 202|androidx.startup:startup-runtime |1.1.1 |Xamarin.AndroidX.Startup.StartupRuntime |1.1.1.12 |
| 203|androidx.swiperefreshlayout:swiperefreshlayout |1.1.0 |Xamarin.AndroidX.SwipeRefreshLayout |1.1.0.19 |
| 204|androidx.tracing:tracing |1.2.0 |Xamarin.AndroidX.Tracing.Tracing |1.2.0.2 |
| 205|androidx.transition:transition |1.4.1 |Xamarin.AndroidX.Transition |1.4.1.17 |
| 206|androidx.tvprovider:tvprovider |1.0.0 |Xamarin.AndroidX.TvProvider |1.0.0.26 |
| 207|androidx.vectordrawable:vectordrawable |1.1.0 |Xamarin.AndroidX.VectorDrawable |1.1.0.24 |
| 208|androidx.vectordrawable:vectordrawable-animated |1.1.0 |Xamarin.AndroidX.VectorDrawable.Animated |1.1.0.24 |
| 209|androidx.versionedparcelable:versionedparcelable |1.2.0 |Xamarin.AndroidX.VersionedParcelable |1.2.0.2 |
| 210|androidx.viewpager:viewpager |1.0.0 |Xamarin.AndroidX.ViewPager |1.0.0.24 |
| 211|androidx.viewpager2:viewpager2 |1.0.0 |Xamarin.AndroidX.ViewPager2 |1.0.0.26 |
| 212|androidx.wear:wear |1.3.0 |Xamarin.AndroidX.Wear |1.3.0.5 |
| 213|androidx.wear:wear-input |1.1.0 |Xamarin.AndroidX.Wear.Input |1.0.0.14 |
| 214|androidx.wear:wear-ongoing |1.0.0 |Xamarin.AndroidX.Wear.Ongoing |1.0.0.14 |
| 215|androidx.wear:wear-phone-interactions |1.0.1 |Xamarin.AndroidX.Wear.PhoneInteractions |1.0.1.12 |
| 216|androidx.wear:wear-remote-interactions |1.0.0 |Xamarin.AndroidX.Wear.RemoteInteractions |1.0.0.14 |
| 217|androidx.wear.compose:compose-foundation |1.3.1 |Xamarin.AndroidX.Wear.Compose.Foundation |1.3.1.1 |
| 218|androidx.wear.compose:compose-material |1.3.1 |Xamarin.AndroidX.Wear.Compose.Material |1.3.1.1 |
| 219|androidx.wear.compose:compose-material-core |1.3.1 |Xamarin.AndroidX.Wear.Compose.Material.Core |1.3.1.1 |
| 220|androidx.wear.compose:compose-navigation |1.3.1 |Xamarin.AndroidX.Wear.Compose.Navigation |1.3.1.1 |
| 221|androidx.wear.protolayout:protolayout |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout |1.1.0.2 |
| 222|androidx.wear.protolayout:protolayout-expression |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout.Expression |1.1.0.2 |
| 223|androidx.wear.protolayout:protolayout-expression-pipeline |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout.Expression.Pipeline |1.1.0.2 |
| 224|androidx.wear.protolayout:protolayout-proto |1.1.0 |Xamarin.AndroidX.Wear.ProtoLayout.Proto |1.1.0.2 |
| 225|androidx.wear.tiles:tiles |1.3.0 |Xamarin.AndroidX.Wear.Tiles |1.3.0.2 |
| 226|androidx.wear.tiles:tiles-material |1.3.0 |Xamarin.AndroidX.Wear.Tiles.Material |1.3.0.2 |
| 227|androidx.wear.tiles:tiles-proto |1.3.0 |Xamarin.AndroidX.Wear.Tiles.Proto |1.3.0.2 |
| 228|androidx.wear.tiles:tiles-renderer |1.1.0 |Xamarin.AndroidX.Wear.Tiles.Renderer |1.1.0.9 |
| 229|androidx.wear.watchface:watchface |1.2.1 |Xamarin.AndroidX.Wear.WatchFace |1.2.1.2 |
| 230|androidx.wear.watchface:watchface-client |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Client |1.2.1.2 |
| 231|androidx.wear.watchface:watchface-client-guava |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.ClientGuava |1.2.1.2 |
| 232|androidx.wear.watchface:watchface-complications |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications |1.2.1.2 |
| 233|androidx.wear.watchface:watchface-complications-data |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Data |1.2.1.2 |
| 234|androidx.wear.watchface:watchface-complications-data-source |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Data.Source |1.2.1.2 |
| 235|androidx.wear.watchface:watchface-complications-data-source-ktx |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Data.Source.Ktx |1.2.1.2 |
| 236|androidx.wear.watchface:watchface-complications-rendering |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Complications.Rendering |1.2.1.2 |
| 237|androidx.wear.watchface:watchface-data |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Data |1.2.1.2 |
| 238|androidx.wear.watchface:watchface-guava |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Guava |1.2.1.2 |
| 239|androidx.wear.watchface:watchface-style |1.2.1 |Xamarin.AndroidX.Wear.WatchFace.Style |1.2.1.2 |
| 240|androidx.webkit:webkit |1.10.0 |Xamarin.AndroidX.WebKit |1.10.0.2 |
| 241|androidx.window:window |1.2.0 |Xamarin.AndroidX.Window |1.2.0.3 |
| 242|androidx.window:window-extensions |1.0.0-alpha01 |Xamarin.AndroidX.Window.WindowExtensions |1.0.0.19-alpha01 |
| 243|androidx.window:window-java |1.2.0 |Xamarin.AndroidX.Window.WindowJava |1.2.0.3 |
| 244|androidx.window:window-rxjava2 |1.2.0 |Xamarin.AndroidX.Window.WindowRxJava2 |1.2.0.3 |
| 245|androidx.window:window-rxjava3 |1.2.0 |Xamarin.AndroidX.Window.WindowRxJava3 |1.2.0.3 |
| 246|androidx.window.extensions.core:core |1.0.0 |Xamarin.AndroidX.Window.Extensions.Core.Core |1.0.0.6 |
| 247|androidx.work:work-runtime |2.9.0 |Xamarin.AndroidX.Work.Runtime |2.9.0.2 |
| 248|androidx.work:work-runtime-ktx |2.9.0 |Xamarin.AndroidX.Work.Work.Runtime.Ktx |2.9.0.2 |
| 249|com.android.installreferrer:installreferrer |1.1.2 |Xamarin.Google.Android.InstallReferrer |1.1.2.1 |
| 250|com.google.accompanist:accompanist-appcompat-theme |0.34.0 |Xamarin.Google.Accompanist.AppCompat.Theme |0.34.0.2 |
| 251|com.google.accompanist:accompanist-drawablepainter |0.34.0 |Xamarin.Google.Accompanist.DrawablePainter |0.34.0.2 |
| 252|com.google.accompanist:accompanist-flowlayout |0.34.0 |Xamarin.Google.Accompanist.FlowLayout |0.34.0.2 |
| 253|com.google.accompanist:accompanist-pager |0.34.0 |Xamarin.Google.Accompanist.Pager |0.34.0.2 |
| 254|com.google.accompanist:accompanist-pager-indicators |0.34.0 |Xamarin.Google.Accompanist.Pager.Indicators |0.34.0.2 |
| 255|com.google.accompanist:accompanist-permissions |0.34.0 |Xamarin.Google.Accompanist.Permissions |0.34.0.2 |
| 256|com.google.accompanist:accompanist-placeholder |0.34.0 |Xamarin.Google.Accompanist.Placeholder |0.34.0.2 |
| 257|com.google.accompanist:accompanist-placeholder-material |0.34.0 |Xamarin.Google.Accompanist.Placeholder.Material |0.34.0.2 |
| 258|com.google.accompanist:accompanist-swiperefresh |0.34.0 |Xamarin.Google.Accompanist.SwipeRefresh |0.34.0.2 |
| 259|com.google.accompanist:accompanist-systemuicontroller |0.34.0 |Xamarin.Google.Accompanist.SystemUIController |0.34.0.2 |
| 260|com.google.android.material:compose-theme-adapter |1.1.18 |Xamarin.Google.Android.Material.Compose.Theme.Adapter |1.1.18.10 |
| 261|com.google.android.material:compose-theme-adapter-3 |1.0.18 |Xamarin.Google.Android.Material.Compose.Theme.Adapter3 |1.0.18.9 |
| 262|com.google.android.material:material |1.10.0 |Xamarin.Google.Android.Material |1.10.0.4 |
| 263|com.google.assistant.appactions:suggestions |1.0.0 |Xamarin.Google.Assistant.AppActions.Suggestions |1.0.0.10 |
| 264|com.google.assistant.appactions:widgets |0.0.1 |Xamarin.Google.Assistant.AppActions.Widgets |0.0.1.11 |
| 265|com.google.auto.value:auto-value-annotations |1.10.4 |Xamarin.Google.AutoValue.Annotations |1.10.4.4 |
| 266|com.google.code.gson:gson |2.10.1 |GoogleGson |2.10.1.9 |
| 267|com.google.crypto.tink:tink-android |1.13.0 |Xamarin.Google.Crypto.Tink.Android |1.13.0.1 |
| 268|com.google.flogger:flogger |0.8 |Xamarin.Flogger |0.8.0.3 |
| 269|com.google.flogger:flogger-system-backend |0.8 |Xamarin.Flogger.SystemBackend |0.8.0.3 |
| 270|com.google.guava:failureaccess |1.0.2 |Xamarin.Google.Guava.FailureAccess |1.0.2.3 |
| 271|com.google.guava:guava |33.1.0-android |Xamarin.Google.Guava |33.1.0.1 |
| 272|com.google.guava:listenablefuture |1.0 |Xamarin.Google.Guava.ListenableFuture |1.0.0.19 |
| 273|com.google.j2objc:j2objc-annotations |3.0.0 |Xamarin.Google.J2Objc.Annotations |3.0.0.1 |
| 274|dev.chrisbanes.snapper:snapper |0.3.0 |Xamarin.Dev.ChrisBanes.Snapper |0.3.0.10 |
| 275|io.github.aakira:napier |2.7.1 |Xamarin.AAkira.Napier |2.7.1.2 |
| 276|io.reactivex.rxjava2:rxandroid |2.1.1 |Xamarin.Android.ReactiveX.RxAndroid |2.1.1.10 |
| 277|io.reactivex.rxjava2:rxjava |2.2.21 |Xamarin.Android.ReactiveX.RxJava |2.2.21.17 |
| 278|io.reactivex.rxjava2:rxkotlin |2.4.0 |Xamarin.Android.ReactiveX.RxKotlin |2.4.0.10 |
| 279|io.reactivex.rxjava3:rxandroid |3.0.2 |Xamarin.Android.ReactiveX.RxJava3.RxAndroid |3.0.2.9 |
| 280|io.reactivex.rxjava3:rxjava |3.1.8 |Xamarin.Android.ReactiveX.RxJava3.RxJava |3.1.8.4 |
| 281|io.reactivex.rxjava3:rxkotlin |3.0.1 |Xamarin.Android.ReactiveX.RxJava3.RxKotlin |3.0.1.10 |
| 282|org.checkerframework:checker-compat-qual |2.5.6 |Xamarin.CheckerFramework.CheckerCompatQual |2.5.6.3 |
| 283|org.checkerframework:checker-qual |3.42.0 |Xamarin.CheckerFramework.CheckerQual |3.42.0.2 |
| 284|org.jetbrains:annotations |24.1.0 |Xamarin.Jetbrains.Annotations |24.1.0.3 |
| 285|org.jetbrains.kotlin:kotlin-android-extensions-runtime |1.9.23 |Xamarin.Kotlin.Android.Extensions.Runtime |1.9.23.1 |
| 286|org.jetbrains.kotlin:kotlin-parcelize-runtime |1.9.23 |Xamarin.Kotlin.Parcelize.Runtime |1.9.23.1 |
| 287|org.jetbrains.kotlin:kotlin-reflect |1.9.23 |Xamarin.Kotlin.Reflect |1.9.23.1 |
| 288|org.jetbrains.kotlin:kotlin-stdlib |1.9.23 |Xamarin.Kotlin.StdLib |1.9.23.1 |
| 289|org.jetbrains.kotlin:kotlin-stdlib-common |1.9.23 |Xamarin.Kotlin.StdLib.Common |1.9.23.1 |
| 290|org.jetbrains.kotlin:kotlin-stdlib-jdk7 |1.9.23 |Xamarin.Kotlin.StdLib.Jdk7 |1.9.23.1 |
| 291|org.jetbrains.kotlin:kotlin-stdlib-jdk8 |1.9.23 |Xamarin.Kotlin.StdLib.Jdk8 |1.9.23.1 |
| 292|org.jetbrains.kotlinx:atomicfu |0.17.0 |Xamarin.KotlinX.AtomicFU |0.17.0.1 |
| 293|org.jetbrains.kotlinx:atomicfu-jvm |0.17.0 |Xamarin.KotlinX.AtomicFU.Jvm |0.17.0.1 |
| 294|org.jetbrains.kotlinx:kotlinx-coroutines-android |1.8.0 |Xamarin.KotlinX.Coroutines.Android |1.8.0.2 |
| 295|org.jetbrains.kotlinx:kotlinx-coroutines-core |1.8.0 |Xamarin.KotlinX.Coroutines.Core |1.8.0.2 |
| 296|org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm |1.8.0 |Xamarin.KotlinX.Coroutines.Core.Jvm |1.8.0.2 |
| 297|org.jetbrains.kotlinx:kotlinx-coroutines-guava |1.8.0 |Xamarin.KotlinX.Coroutines.Guava |1.8.0.2 |
| 298|org.jetbrains.kotlinx:kotlinx-coroutines-jdk8 |1.8.0 |Xamarin.KotlinX.Coroutines.Jdk8 |1.8.0.2 |
| 299|org.jetbrains.kotlinx:kotlinx-coroutines-play-services |1.8.0 |Xamarin.KotlinX.Coroutines.Play.Services |1.8.0.2 |
| 300|org.jetbrains.kotlinx:kotlinx-coroutines-reactive |1.8.0 |Xamarin.KotlinX.Coroutines.Reactive |1.8.0.2 |
| 301|org.jetbrains.kotlinx:kotlinx-coroutines-rx2 |1.8.0 |Xamarin.KotlinX.Coroutines.Rx2 |1.8.0.2 |
| 302|org.jetbrains.kotlinx:kotlinx-coroutines-rx3 |1.8.0 |Xamarin.KotlinX.Coroutines.Rx3 |1.8.0.2 |
| 303|org.jetbrains.kotlinx:kotlinx-serialization-core |1.6.3 |Xamarin.KotlinX.Serialization.Core |1.6.3.1 |
| 304|org.jetbrains.kotlinx:kotlinx-serialization-core-jvm |1.6.3 |Xamarin.KotlinX.Serialization.Core.Jvm |1.6.3.1 |
| 305|org.jetbrains.kotlinx:kotlinx-serialization-protobuf |1.6.3 |Xamarin.KotlinX.Serialization.Protobuf |1.6.3.1 |
| 306|org.jetbrains.kotlinx:kotlinx-serialization-protobuf-jvm |1.6.3 |Xamarin.KotlinX.Serialization.Protobuf.Jvm |1.6.3.1 |
| 307|org.reactivestreams:reactive-streams |1.0.4 |Xamarin.Android.ReactiveStreams |1.0.4.11 |

Просмотреть файл

@ -1,19 +1,19 @@
BuildToolName,BuildToolVersion
dotnet sdk, 7.0.403
dotnet sdk, 7.0.408
dotnet sdk, patch
msbuild-sdks MSBuild.Sdk.Extras, 3.0.44
msbuild-sdks Microsoft.Build.Traversal, 3.2.0
msbuild-sdks Microsoft.Build.NoTargets, 3.7.0
msbuild-sdks Microsoft.Build.Traversal, 4.1.0
msbuild-sdks Microsoft.Build.NoTargets, 3.7.56
msbuild-sdks Xamarin.Legacy.Sdk, 0.2.0-alpha4
Mono JIT compiler, 6.12.0.188 (2020-02/ca8abcb6bc4 Thu Oct 13 14:26:22 EDT 2022)
nuget, 6.3.1.1
api-tools,1.3.5
boots,1.1.0.712-preview2
boots,1.1.0.36
private-api-tools,1.0.3
xamarin.androidbinderator.tool,0.5.7
Gradle, 8.4
Kotlin, 1.9.10
Gradle, 8.7
Kotlin, 1.9.22
Groovy, 3.0.17
Ant, Apache Ant(TM) version 1.10.13 compiled on January 4 2023
JVM, 11.0.21 (Eclipse Adoptium 11.0.21+9)
openjdk, 11.0.21 2023-10-17
javac, 11.0.21
JVM, 11.0.22 (Eclipse Adoptium 11.0.22+7)
openjdk, 11.0.22 2024-01-16
javac, 11.0.22

1 BuildToolName BuildToolVersion
2 dotnet sdk 7.0.403 7.0.408
3 dotnet sdk patch
4 msbuild-sdks MSBuild.Sdk.Extras 3.0.44
5 msbuild-sdks Microsoft.Build.Traversal 3.2.0 4.1.0
6 msbuild-sdks Microsoft.Build.NoTargets 3.7.0 3.7.56
7 msbuild-sdks Xamarin.Legacy.Sdk 0.2.0-alpha4
8 Mono JIT compiler 6.12.0.188 (2020-02/ca8abcb6bc4 Thu Oct 13 14:26:22 EDT 2022)
9 nuget 6.3.1.1
10 api-tools boots 1.3.5 1.1.0.36
11 boots private-api-tools 1.1.0.712-preview2 1.0.3
12 xamarin.androidbinderator.tool 0.5.7
13 Gradle 8.4 8.7
14 Kotlin 1.9.10 1.9.22
15 Groovy 3.0.17
16 Ant Apache Ant(TM) version 1.10.13 compiled on January 4 2023
17 JVM 11.0.21 (Eclipse Adoptium 11.0.21+9) 11.0.22 (Eclipse Adoptium 11.0.22+7)
18 openjdk 11.0.21 2023-10-17 11.0.22 2024-01-16
19 javac 11.0.21 11.0.22

Просмотреть файл

@ -6,18 +6,18 @@
{
"sdk":
{
"version": "7.0.403",
"version": "7.0.408",
"rollForward": "patch"
},
"msbuild-sdks":
{
"MSBuild.Sdk.Extras": "3.0.44",
"Microsoft.Build.Traversal": "3.2.0",
"Microsoft.Build.NoTargets": "3.7.0",
"Microsoft.Build.Traversal": "4.1.0",
"Microsoft.Build.NoTargets": "3.7.56",
"Xamarin.Legacy.Sdk": "0.2.0-alpha4"
}
}
```
version7.0.403
version7.0.408
rollForwardpatch

Просмотреть файл

@ -597,7 +597,6 @@ ReactiveX.Schedulers
ReactiveX.Subjects
ReactiveX.Subscribers
System.Runtime.CompilerServices
System.Runtime.Versioning
Xamarin.AAkira.Napier
Xamarin.Android.InstallReferrer.Api
Xamarin.Android.InstallReferrer.Commons

Просмотреть файл

@ -1,33 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28606.126
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuildAll", "BuildAll\BuildAll.csproj", "{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary", "ClassLibrary\ClassLibrary.csproj", "{49B04B11-434E-4579-AB17-D636343568AC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Release|Any CPU.Build.0 = Release|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Release|Any CPU.Deploy.0 = Release|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {47AA0B75-DCFB-4D55-AFC5-DB072FDDCCB1}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,108 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{122416d6-6b49-4ee2-a1e8-b825f31c79fe}</TemplateGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BuildAll</RootNamespace>
<AssemblyName>BuildAll</AssemblyName>
<FileAlignment>512</FileAlignment>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<TargetFrameworkVersion>v12.0</TargetFrameworkVersion>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
<EnableProguard>true</EnableProguard>
<AndroidEnableMultiDex>true</AndroidEnableMultiDex>
<AndroidSupportedAbis>armeabi-v7a;arm64-v8a</AndroidSupportedAbis>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
<AndroidLinkMode>None</AndroidLinkMode>
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
<MandroidI18n />
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidEnableDesugar>true</AndroidEnableDesugar>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidEnableDesugar>true</AndroidEnableDesugar>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\layout\activity_main.axml" />
<AndroidResource Include="Resources\values\colors.xml" />
<AndroidResource Include="Resources\values\ic_launcher_background.xml" />
<AndroidResource Include="Resources\values\strings.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_round.png" />
</ItemGroup>
<ItemGroup>
<ProguardConfiguration Include="proguard-androidx.cfg" />
</ItemGroup>
<Import Project="..\..\..\output\AllPackages.targets" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>

Просмотреть файл

@ -1,17 +0,0 @@
using Android.App;
using Android.OS;
namespace BuildAll
{
[Activity(Label = "@string/app_name", MainLauncher = true)]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.activity_main);
}
}
}

Просмотреть файл

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="BuildAll.BuildAll" android:installLocation="auto">
<!--
HeifWriter minSDK=28
-->
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="31" />
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:largeHeap="true"></application>
</manifest>

Просмотреть файл

@ -1,30 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BuildAll")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BuildAll")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Просмотреть файл

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>

Просмотреть файл

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Просмотреть файл

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.4 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.5 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 958 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.4 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.0 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.7 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 7.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.9 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 11 KiB

Просмотреть файл

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#2c3e50</color>
<color name="colorPrimaryDark">#1B3147</color>
<color name="colorAccent">#3498db</color>
</resources>

Просмотреть файл

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#2C3E50</color>
</resources>

Просмотреть файл

@ -1,4 +0,0 @@
<resources>
<string name="app_name">BuildAll</string>
<string name="action_settings">Settings</string>
</resources>

Просмотреть файл

@ -1,3 +0,0 @@
<resources>
</resources>

Просмотреть файл

@ -1 +0,0 @@
-dontwarn java.lang.ClassValue

Просмотреть файл

@ -1,27 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28606.126
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BuildAllDotNet", "BuildAllDotNet\BuildAllDotNet.csproj", "{7CA41D33-5A33-4968-AEBD-9A76B7E83BB7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7CA41D33-5A33-4968-AEBD-9A76B7E83BB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7CA41D33-5A33-4968-AEBD-9A76B7E83BB7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7CA41D33-5A33-4968-AEBD-9A76B7E83BB7}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{7CA41D33-5A33-4968-AEBD-9A76B7E83BB7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7CA41D33-5A33-4968-AEBD-9A76B7E83BB7}.Release|Any CPU.Build.0 = Release|Any CPU
{7CA41D33-5A33-4968-AEBD-9A76B7E83BB7}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {47AA0B75-DCFB-4D55-AFC5-DB072FDDCCB1}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,8 +0,0 @@
using System;
namespace ClassLibrary
{
public class Class1
{
}
}

Просмотреть файл

@ -1,71 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{49B04B11-434E-4579-AB17-D636343568AC}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{9ef11e43-1701-4396-8835-8392d57abb70}</TemplateGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ClassLibrary</RootNamespace>
<AssemblyName>ClassLibrary</AssemblyName>
<FileAlignment>512</FileAlignment>
<Deterministic>True</Deterministic>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<TargetFrameworkVersion>v12.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Mono.Android" />
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Class1.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\values\strings.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Google.Guava">
</PackageReference>
<PackageReference Include="Xamarin.Google.Guava.FailureAccess">
</PackageReference>
<PackageReference Include="Xamarin.Google.Guava.ListenableFuture">
</PackageReference>
<!--
./samples/BuildAll/ClassLibrary/obj/Debug/lp/167/jl/res/values/values.xml(0,0):
Error APT2260: resource android:attr/lStar not found. (APT2260) (ClassLibrary)
-->
<PackageReference Include="Xamarin.AndroidX.Core">
</PackageReference>
</ItemGroup>
<Import Project="..\..\..\output\AllPackages.targets" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>

Просмотреть файл

@ -1,26 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ClassLibrary")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ClassLibrary")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Просмотреть файл

@ -1,4 +0,0 @@
<resources>
<string name="hello">Hello World, Click Me!</string>
<string name="app_name">ClassLibrary</string>
</resources>

Просмотреть файл

@ -1,37 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28606.126
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary", "ClassLibrary\ClassLibrary.csproj", "{49B04B11-434E-4579-AB17-D636343568AC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuildMinimalAppCompat", "BuildMinimalAppCompat\BuildMinimalAppCompat.csproj", "{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetStandardLibrary.SDKShortStyle", "NetStandardLibrary.SDKShortStyle\NetStandardLibrary.SDKShortStyle.csproj", "{50E4014B-9084-4039-92E7-C47EB0BA2A8B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{49B04B11-434E-4579-AB17-D636343568AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Release|Any CPU.Build.0 = Release|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Release|Any CPU.Build.0 = Release|Any CPU
{50E4014B-9084-4039-92E7-C47EB0BA2A8B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{50E4014B-9084-4039-92E7-C47EB0BA2A8B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{50E4014B-9084-4039-92E7-C47EB0BA2A8B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{50E4014B-9084-4039-92E7-C47EB0BA2A8B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {47AA0B75-DCFB-4D55-AFC5-DB072FDDCCB1}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,109 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{122416d6-6b49-4ee2-a1e8-b825f31c79fe}</TemplateGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BuildAll</RootNamespace>
<AssemblyName>BuildAll</AssemblyName>
<FileAlignment>512</FileAlignment>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<TargetFrameworkVersion>v12.0</TargetFrameworkVersion>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
<EnableProguard>true</EnableProguard>
<AndroidEnableMultiDex>true</AndroidEnableMultiDex>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
<AndroidLinkMode>None</AndroidLinkMode>
<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk>
<MandroidI18n />
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidEnableDesugar>true</AndroidEnableDesugar>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidEnableDesugar>true</AndroidEnableDesugar>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\layout\activity_main.axml" />
<AndroidResource Include="Resources\values\colors.xml" />
<AndroidResource Include="Resources\values\ic_launcher_background.xml" />
<AndroidResource Include="Resources\values\strings.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_round.png" />
</ItemGroup>
<ItemGroup>
<ProguardConfiguration Include="proguard-androidx.cfg" />
</ItemGroup>
<Import Project="..\..\..\output\AllPackages.targets" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>

Просмотреть файл

@ -1,17 +0,0 @@
using Android.App;
using Android.OS;
namespace BuildAll
{
[Activity(Label = "@string/app_name", MainLauncher = true)]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.activity_main);
}
}
}

Просмотреть файл

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="BuildAll.BuildAll" android:installLocation="auto">
<!--
HeifWriter minSDK=28
-->
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="29" />
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:largeHeap="true"></application>
</manifest>

Просмотреть файл

@ -1,30 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BuildAll")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BuildAll")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Просмотреть файл

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>

Просмотреть файл

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Просмотреть файл

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.4 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.5 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 958 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.4 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.0 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.7 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 7.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.9 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 11 KiB

Просмотреть файл

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#2c3e50</color>
<color name="colorPrimaryDark">#1B3147</color>
<color name="colorAccent">#3498db</color>
</resources>

Просмотреть файл

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#2C3E50</color>
</resources>

Просмотреть файл

@ -1,4 +0,0 @@
<resources>
<string name="app_name">BuildAll</string>
<string name="action_settings">Settings</string>
</resources>

Просмотреть файл

@ -1,3 +0,0 @@
<resources>
</resources>

Просмотреть файл

@ -1 +0,0 @@
-dontwarn java.lang.ClassValue

Просмотреть файл

@ -1,8 +0,0 @@
using System;
namespace ClassLibrary
{
public class Class1
{
}
}

Просмотреть файл

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{49B04B11-434E-4579-AB17-D636343568AC}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{9ef11e43-1701-4396-8835-8392d57abb70}</TemplateGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ClassLibrary</RootNamespace>
<AssemblyName>ClassLibrary</AssemblyName>
<FileAlignment>512</FileAlignment>
<Deterministic>True</Deterministic>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<TargetFrameworkVersion>v12.0</TargetFrameworkVersion>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Mono.Android" />
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Class1.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\values\strings.xml" />
</ItemGroup>
<Import Project="..\..\..\output\AllPackages.targets" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>

Просмотреть файл

@ -1,26 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ClassLibrary")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ClassLibrary")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Просмотреть файл

@ -1,4 +0,0 @@
<resources>
<string name="hello">Hello World, Click Me!</string>
<string name="app_name">ClassLibrary</string>
</resources>

Просмотреть файл

@ -1,8 +0,0 @@
using System;
namespace NetStandardLibrary.SDKShortStyle
{
public class Class1
{
}
}

Просмотреть файл

@ -1,11 +0,0 @@
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFramework>MonoAndroid12.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Update="Xamarin.Google.Android.Material" Version="1.9.0.2" />
<PackageReference Update="Xamarin.AndroidX.AppCompat" Version="1.6.1.3" />
</ItemGroup>
</Project>

Просмотреть файл

@ -1,31 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28606.126
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary", "ClassLibrary\ClassLibrary.csproj", "{49B04B11-434E-4579-AB17-D636343568AC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = " BuildMinimalMaterial", "BuildMinimalMaterial\ BuildMinimalMaterial.csproj", "{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{49B04B11-434E-4579-AB17-D636343568AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{49B04B11-434E-4579-AB17-D636343568AC}.Release|Any CPU.Build.0 = Release|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {47AA0B75-DCFB-4D55-AFC5-DB072FDDCCB1}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -1,109 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{F47B1471-0F85-4690-B8A7-09F86ABBB1F6}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{122416d6-6b49-4ee2-a1e8-b825f31c79fe}</TemplateGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BuildAll</RootNamespace>
<AssemblyName>BuildAll</AssemblyName>
<FileAlignment>512</FileAlignment>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<TargetFrameworkVersion>v12.0</TargetFrameworkVersion>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
<EnableProguard>true</EnableProguard>
<AndroidEnableMultiDex>true</AndroidEnableMultiDex>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
<AndroidLinkMode>None</AndroidLinkMode>
<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk>
<MandroidI18n />
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidEnableDesugar>true</AndroidEnableDesugar>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk>
<AndroidDexTool>d8</AndroidDexTool>
<AndroidLinkTool>r8</AndroidLinkTool>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidEnableDesugar>true</AndroidEnableDesugar>
<JavaMaximumHeapSize>2G</JavaMaximumHeapSize>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\layout\activity_main.axml" />
<AndroidResource Include="Resources\values\colors.xml" />
<AndroidResource Include="Resources\values\ic_launcher_background.xml" />
<AndroidResource Include="Resources\values\strings.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\ic_launcher_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-hdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_round.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\ic_launcher_round.png" />
</ItemGroup>
<ItemGroup>
<ProguardConfiguration Include="proguard-androidx.cfg" />
</ItemGroup>
<Import Project="..\..\..\output\AllPackages.targets" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>

Просмотреть файл

@ -1,17 +0,0 @@
using Android.App;
using Android.OS;
namespace BuildAll
{
[Activity(Label = "@string/app_name", MainLauncher = true)]
public class MainActivity : Activity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.activity_main);
}
}
}

Просмотреть файл

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="BuildAll.BuildAll" android:installLocation="auto">
<!--
HeifWriter minSDK=28
-->
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="29" />
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:largeHeap="true"></application>
</manifest>

Просмотреть файл

@ -1,30 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BuildAll")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BuildAll")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Просмотреть файл

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>

Просмотреть файл

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Просмотреть файл

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.6 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.4 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.5 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 1.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 958 B

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.4 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 2.0 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.7 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.3 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 7.8 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 4.9 KiB

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше